标签: r dplyr tidyr tidyverse
我的数据结构如下df,但我需要将其转换为df2。 tidyverse中是否有可以执行此操作的功能?
df
df2
tidyverse
df = data.frame(x = 1:3, y = c("a", "a b", "a b c")) df2 = data.frame(x = c(1,2,2,3,3,3), y = c("a", "a", "b", "a", "b", "c"))
感谢。