Description Usage Arguments Value Examples
Identify each dataframe in a list with the name of the corresponding list item.
1 |
dfs |
A list of dataframes. |
name |
Names of the columns that store the names and values. |
A list of dataframes.
1 2 3 4 5 6 7 | dfs <- list(a = data.frame(x = 1), b = data.frame(x = 1))
name_dfs(dfs)
name_dfs(dfs, "custom_name")
dfs2 <- list(data.frame(x = 1), data.frame(x = 1))
name_dfs(dfs2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.