pack | R Documentation |
This function packs values given by name into a named list.
pack(..., .wrapr_private_var_env = parent.frame())
... |
values to pack, these should be specified by name (not as constants). |
.wrapr_private_var_env |
environment to evaluate in |
named list of values
unpack
x <- 1
y <- 2
pack(x, y) # list(x = 1, y = 2)
pack(a = x, y) # list(a = 1, y = 2)
pack(a = 5, y) # list(a = 5, y = 2)
pack(1, 2) # list('1' = 1, '2' = 2)
v <- pack(x = 8, y = 9) # list(x = 8, y = 9)
v -> unpack[x, y]
print(x) # 8
print(y) # 9
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.