作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
Split comma-separated strings in a column into separate rows
(6 个回答)
12 个月前关闭。
我在数据框中有一列,如下所示,每行包含多个由 ,
分隔的国家/地区
df <- data.frame(
countries = c(
"UK , Spain , Germany , Italy , Netherlands" ,
"UK , Canada , AUS , China" ,
"Spain , AUS , Italy , Russia"
)
)
这就是数据的样子
countries
1 UK , Spain , Germany , Italy , Netherland
2 UK , Canada , AUS , China
3 Spain , AUS , Italy , Russia
我们如何将其转换为如下所示的内容?
countries
1 UK
2 Spain
3 Germany
4 Italy
5 Netherlands
6 UK
7 Canada
8 AUS
9 China
10 Spain
11 AUS
12 Italy
13 Russia
最佳答案
你试一试:
data.frame(countries = unlist(strsplit(as.character(df$countries), " , ")))
关于r - 将一行拆分为多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30283873/
我是一名优秀的程序员,十分优秀!