separate_longer_delim {tidytable} | R Documentation |
Split a string into rows
Description
If a column contains observations with multiple delimited values, separate them each into their own row.
Usage
separate_longer_delim(.df, cols, delim, ...)
Arguments
.df |
A data.frame or data.table |
cols |
Columns to separate |
delim |
Separator delimiting collapsed values |
... |
These dots are for future extensions and must be empty. |
Examples
df <- data.table(
x = 1:3,
y = c("a", "d,e,f", "g,h"),
z = c("1", "2,3,4", "5,6")
)
df %>%
separate_longer_delim(c(y, z), ",")
[Package tidytable version 0.11.1 Index]