nlist | R Documentation |
Create a named list using specified names or, if names are omitted, using the
names of the objects in the list. The code list(a = a, b = b)
becomes
nlist(a,b)
and list(a = a, b = 2)
becomes nlist(a, b = 2)
, etc.
nlist(...)
... |
Objects to include in the list. |
A named list.
# All variables already defined
a <- rnorm(100)
b <- mat.or.vec(10, 3)
nlist(a,b)
# Define some variables in the call and take the rest from the environment
nlist(a, b, veggies = c("lettuce", "spinach"), fruits = c("banana", "papaya"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.