将数据框字符串列拆分为多列


244

我想获取表格的数据

before = data.frame(attr = c(1,30,4,6), type=c('foo_and_bar','foo_and_bar_2'))
  attr          type
1    1   foo_and_bar
2   30 foo_and_bar_2
3    4   foo_and_bar
4    6 foo_and_bar_2

split()type上方的“ ” 列上使用以获取如下内容:

  attr type_1 type_2
1    1    foo    bar
2   30    foo  bar_2
3    4    foo    bar
4    6    foo  bar_2

我想出了一些令人难以置信的复杂性,涉及某种形式的apply工作,但此后我放错了地方。似乎太复杂了,无法成为最佳方法。我可以strsplit按以下方式使用,但不清楚如何将其重新放入数据框中的2列。

> strsplit(as.character(before$type),'_and_')
[[1]]
[1] "foo" "bar"

[[2]]
[1] "foo"   "bar_2"

[[3]]
[1] "foo" "bar"

[[4]]
[1] "foo"   "bar_2"

感谢您的指导。我还不太讨厌R列表。

Answers:


279

stringr::str_split_fixed

library(stringr)
str_split_fixed(before$type, "_and_", 2)

2
这对于今天的问题也很好用..但是它在每行的开头添加了一个“ c”。知道为什么吗???left_right <- str_split_fixed(as.character(split_df),'\">',2)
2015年

我想使用具有“ ...”的模式进行拆分,当我应用该函数时,它不返回任何内容。可能是什么问题呢。我的类型类似于“测试...得分”
user3841581

2
@ user3841581-我知道您的旧查询,但是文档中对此进行了介绍- 在参数中“匹配固定的字符串” str_split_fixed("aaa...bbb", fixed("..."), 2)可以很好fixed()地工作pattern=.在正则表达式中表示“任何字符”。
thelatemail

谢谢hadley,一种非常方便的方法,但是有一点可以改进,如果原始列中有NA,则分离后结果列中将变成sevalal空字符串,这是不必要的,我想让NA仍然保持NA后分离
cloudcomputes

效果很好,即如果缺少分隔符!例如,如果我有一个向量'a <-c(“ 1N”,“ 2N”)',我想在列'1,1,“ N”,“ N”'中分开,则运行'str_split_fixed(s,“ “,2)'。我只是不确定如何用这种方法命名新列'col1 <-c(1,1)'和'col2 <-c(“ N”,“ N”)'
maycca

172

另一个选择是使用新的tidyr软件包。

library(dplyr)
library(tidyr)

before <- data.frame(
  attr = c(1, 30 ,4 ,6 ), 
  type = c('foo_and_bar', 'foo_and_bar_2')
)

before %>%
  separate(type, c("foo", "bar"), "_and_")

##   attr foo   bar
## 1    1 foo   bar
## 2   30 foo bar_2
## 3    4 foo   bar
## 4    6 foo bar_2

有没有办法限制使用split进行的拆分数量?假设我只想在'_'上拆分一次(或者str_split_fixed在现有数据框中添加列并添加)?
JelenaČuklina

66

5年后添加强制性data.table解决方案

library(data.table) ## v 1.9.6+ 
setDT(before)[, paste0("type", 1:2) := tstrsplit(type, "_and_")]
before
#    attr          type type1 type2
# 1:    1   foo_and_bar   foo   bar
# 2:   30 foo_and_bar_2   foo bar_2
# 3:    4   foo_and_bar   foo   bar
# 4:    6 foo_and_bar_2   foo bar_2

我们还可以确保结果列具有正确的类型,通过添加type.convertfixed参数来提高性能(因为"_and_"它实际上不是正则表达式)

setDT(before)[, paste0("type", 1:2) := tstrsplit(type, "_and_", type.convert = TRUE, fixed = TRUE)]

如果您使用的'_and_'模式数目有所不同,您可以通过max(lengths(strsplit(before$type, '_and_')))
andschar

这是我最喜欢的答案,效果很好!您能否解释一下它是如何工作的。为什么要转置(strsplit(...))而不是粘贴0来连接字符串-不分割它们...
壁虎

1
@壁虎我不确定是什么问题。如果仅使用strsplit它,则会在每个插槽中创建一个带有两个值的单个矢量,因此tstrsplit将其转置为两个在每个插槽中带有一个值的矢量。paste0仅用于创建列名,而不用于值。在方程式的LHS上是列名,在RHS上是列上的split + Transpose运算。:=代表“ 就地分配 ”,因此您在<-那里看不到分配运算符。
David Arenburg

57

另一种方法:使用rbindout

before <- data.frame(attr = c(1,30,4,6), type=c('foo_and_bar','foo_and_bar_2'))  
out <- strsplit(as.character(before$type),'_and_') 
do.call(rbind, out)

     [,1]  [,2]   
[1,] "foo" "bar"  
[2,] "foo" "bar_2"
[3,] "foo" "bar"  
[4,] "foo" "bar_2"

并结合:

data.frame(before$attr, do.call(rbind, out))

4
较新的R版本的另一种选择是strcapture("(.*)_and_(.*)", as.character(before$type), data.frame(type_1 = "", type_2 = ""))
alexis_laz,2016年

36

请注意,带有“ [”的sapply可用于提取这些列表中的第一项或第二项,因此:

before$type_1 <- sapply(strsplit(as.character(before$type),'_and_'), "[", 1)
before$type_2 <- sapply(strsplit(as.character(before$type),'_and_'), "[", 2)
before$type <- NULL

这是一个gsub方法:

before$type_1 <- gsub("_and_.+$", "", before$type)
before$type_2 <- gsub("^.+_and_", "", before$type)
before$type <- NULL

31

这是一个与aniko解决方案相同的衬里,但使用hadley的弦包:

do.call(rbind, str_split(before$type, '_and_'))

1
好的收获,对我来说是最好的解决方案。虽然比stringr包装慢一些。
Melka '16

20

要添加到选项中,您还可以使用以下splitstackshape::cSplit函数:

library(splitstackshape)
cSplit(before, "type", "_and_")
#    attr type_1 type_2
# 1:    1    foo    bar
# 2:   30    foo  bar_2
# 3:    4    foo    bar
# 4:    6    foo  bar_2

3年后-此选项最适合解决我遇到的类似问题-但是我使用的数据框有54列,因此我需要将它们全部分成两部分。有没有一种方法可以使用这种方法-只需将上述命令键入54次即可?非常感谢,尼基。
妮基(Nicki)

@Nicki,您是否尝试提供列名或列位置的向量?那应该做到的
。...– A5C1D2H2I1M1N2O1R2T1

它并不仅仅是重命名列-我需要像上面那样按实际方式拆分列,以有效地使df中的列数加倍。以下是我最后使用的内容:df2 <-cSplit(df1,splitCols = 1:54,“ /”)
Nicki

14

一个简单的方法是使用sapply()[函数:

before <- data.frame(attr = c(1,30,4,6), type=c('foo_and_bar','foo_and_bar_2'))
out <- strsplit(as.character(before$type),'_and_')

例如:

> data.frame(t(sapply(out, `[`)))
   X1    X2
1 foo   bar
2 foo bar_2
3 foo   bar
4 foo bar_2

sapply()的结果是一个矩阵,需要转置并转换回数据框。然后是一些简单的操作即可产生您想要的结果:

after <- with(before, data.frame(attr = attr))
after <- cbind(after, data.frame(t(sapply(out, `[`))))
names(after)[2:3] <- paste("type", 1:2, sep = "_")

此时,after您想要的是

> after
  attr type_1 type_2
1    1    foo    bar
2   30    foo  bar_2
3    4    foo    bar
4    6    foo  bar_2

12

这个主题几乎已经精疲力尽,我想提供一个解决方案,让您稍微了解一些通用的版本,因为您不知道输出列的数量是先验的。例如,你有

before = data.frame(attr = c(1,30,4,6), type=c('foo_and_bar','foo_and_bar_2', 'foo_and_bar_2_and_bar_3', 'foo_and_bar'))
  attr                    type
1    1             foo_and_bar
2   30           foo_and_bar_2
3    4 foo_and_bar_2_and_bar_3
4    6             foo_and_bar

我们不能使用dplyr,separate()因为我们不知道拆分前结果列的数量,因此我创建了一个stringr用于拆分列的函数,给定了生成列的模式和名称前缀。我希望使用的编码模式是正确的。

split_into_multiple <- function(column, pattern = ", ", into_prefix){
  cols <- str_split_fixed(column, pattern, n = Inf)
  # Sub out the ""'s returned by filling the matrix to the right, with NAs which are useful
  cols[which(cols == "")] <- NA
  cols <- as.tibble(cols)
  # name the 'cols' tibble as 'into_prefix_1', 'into_prefix_2', ..., 'into_prefix_m' 
  # where m = # columns of 'cols'
  m <- dim(cols)[2]

  names(cols) <- paste(into_prefix, 1:m, sep = "_")
  return(cols)
}

然后split_into_multiple,我们可以在dplyr管道中使用,如下所示:

after <- before %>% 
  bind_cols(split_into_multiple(.$type, "_and_", "type")) %>% 
  # selecting those that start with 'type_' will remove the original 'type' column
  select(attr, starts_with("type_"))

>after
  attr type_1 type_2 type_3
1    1    foo    bar   <NA>
2   30    foo  bar_2   <NA>
3    4    foo  bar_2  bar_3
4    6    foo    bar   <NA>

然后我们可以gather用来整理...

after %>% 
  gather(key, val, -attr, na.rm = T)

   attr    key   val
1     1 type_1   foo
2    30 type_1   foo
3     4 type_1   foo
4     6 type_1   foo
5     1 type_2   bar
6    30 type_2 bar_2
7     4 type_2 bar_2
8     6 type_2   bar
11    4 type_3 bar_3

干杯,我认为这非常有用。
Tjebo

8

这是一个基数为R的衬垫,该衬垫与许多先前的解决方案重叠,但是返回具有正确名称的data.frame。

out <- setNames(data.frame(before$attr,
                  do.call(rbind, strsplit(as.character(before$type),
                                          split="_and_"))),
                  c("attr", paste0("type_", 1:2)))
out
  attr type_1 type_2
1    1    foo    bar
2   30    foo  bar_2
3    4    foo    bar
4    6    foo  bar_2

它用于strsplit分解变量,并data.frame使用do.call/ rbind将数据放回data.frame。额外的增量改进是使用setNames来将变量名称添加到data.frame。


6

这个问题已经很老了,但是我将添加目前发现的最简单的解决方案。

library(reshape2)
before = data.frame(attr = c(1,30,4,6), type=c('foo_and_bar','foo_and_bar_2'))
newColNames <- c("type1", "type2")
newCols <- colsplit(before$type, "_and_", newColNames)
after <- cbind(before, newCols)
after$type <- NULL
after

到目前为止,这是管理df矢量的最简单方法

5

从R版本3.4.0开始,您可以strcapture()utils软件包(基本R安装包附带)中使用,将输出绑定到其他列。

out <- strcapture(
    "(.*)_and_(.*)",
    as.character(before$type),
    data.frame(type_1 = character(), type_2 = character())
)

cbind(before["attr"], out)
#   attr type_1 type_2
# 1    1    foo    bar
# 2   30    foo  bar_2
# 3    4    foo    bar
# 4    6    foo  bar_2

4

如果要坚持strsplit()使用的另一种方法是使用unlist()命令。这是沿着这些思路的解决方案。

tmp <- matrix(unlist(strsplit(as.character(before$type), '_and_')), ncol=2,
   byrow=TRUE)
after <- cbind(before$attr, as.data.frame(tmp))
names(after) <- c("attr", "type_1", "type_2")

4

基本但可能很慢:

n <- 1
for(i in strsplit(as.character(before$type),'_and_')){
     before[n, 'type_1'] <- i[[1]]
     before[n, 'type_2'] <- i[[2]]
     n <- n + 1
}

##   attr          type type_1 type_2
## 1    1   foo_and_bar    foo    bar
## 2   30 foo_and_bar_2    foo  bar_2
## 3    4   foo_and_bar    foo    bar
## 4    6 foo_and_bar_2    foo  bar_2

1

这是另一个基本的R解决方案。我们可以使用,read.table但是因为它只接受一个字节的sep参数,并且这里有多字节分隔符,所以我们可以gsub将多字节分隔符替换为任何一个字节分隔符,并在其中使用它作为sep参数read.table

cbind(before[1], read.table(text = gsub('_and_', '\t', before$type), 
                 sep = "\t", col.names = paste0("type_", 1:2)))

#  attr type_1 type_2
#1    1    foo    bar
#2   30    foo  bar_2
#3    4    foo    bar
#4    6    foo  bar_2

在这种情况下,我们还可以通过将其替换为默认sep参数来使其更短,因此我们不必明确提及它

cbind(before[1], read.table(text = gsub('_and_', ' ', before$type), 
                 col.names = paste0("type_", 1:2)))
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.