tbl_assign_dictionary_names | R Documentation |
Requires a 'feature' and 'actual' column or a 'tibble' with 2 columns and the 'actual' as the second colun
tbl_assign_dictionary_names(data, dictionary_names = NULL, snake_names = F)
dictionary_names |
library(tibble) dict_iris <- tibble(feature = names(iris), actual = c("SL", "SW", "PL", "PW", "Name of Species")) tbl_assign_dictionary_names(iris, dict_iris) tbl_assign_dictionary_names(iris, dict_iris, snake_names = T)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.