Description Usage Arguments Value See Also Examples
Append R object to a list.
1 | append_list(l, obj, obj.name, overwrite = TRUE)
|
l |
A R-list. |
obj |
R object to be appended to the list. |
obj.name |
R object name to be used to the list. |
overwrite |
logical value indicates whether overwrite object with the same name. |
l_new |
A new list with additions. |
1 2 3 | l <- list(c("a", "b"))
x <- list(c(1:5))
append_list(l, x, "X")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.