string_to_table | R Documentation |
It takes a character string with names separated by comma (e.g. journal's names) and turns them into a table
string_to_table(x, n, split_regex = ", ?")
x |
string to split and convert to table |
n |
number of bucket to create. It will be the number of column in the resulting data.frame |
split_regex |
defaults to |
If the number of elements can't be split equally in the n
column, blank
cells will be created and all placed in the last column.
a dataframe of n
columns
string_to_table(paste(letters, collapse = ", "), 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.