List | R Documentation |
List
creates a list and names its elements after the
arguments given, in a manner analogously to data.frame
List(...)
... |
tagged or untagged arguments from which the list is formed. If the untagged arguments are variables from the englosing environment, their names become the names of the list elements. |
num <- 1:3
strng <- c("a","b","A","B")
logi <- rep(FALSE,7)
List(num,strng,logi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.