create_datalist | R Documentation |
create_datalist
creates data list by using data names and combining them all into a named list.
create_datalist(data_names, envir = .GlobalEnv)
data_names |
A character vector of all datasets in the selected environment to collapse into a named list. |
envir |
An environment object, defaulted to |
A named list.
dataset1 <- mtcars
dataset2 <- iris
combined_datalist <- create_datalist(c('dataset1', 'dataset2'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.