separate_rows {tidyr} | R Documentation |
If a variable contains observations with multiple delimited values, this separates the values and places each one in its own row.
separate_rows(data, ..., sep = "[^[:alnum:].]+", convert = FALSE)
data |
A data frame. |
... |
< |
sep |
Separator delimiting collapsed values. |
convert |
If |
df <- tibble(
x = 1:3,
y = c("a", "d,e,f", "g,h"),
z = c("1", "2,3,4", "5,6")
)
separate_rows(df, y, z, convert = TRUE)