gpt4 book ai didi

R:拆分格式如下 "xxx; yyy; zzz;"的字符串

转载 作者:行者123 更新时间:2023-12-04 09:26:05 32 4
gpt4 key购买 nike

我得到的原始数据是这样的,都在一列

John;Peter;Eric;
Susan;Mary;Kate;

但我想将它们分成三个单独的列

John  Peter  Eric
Susan Mary Kate

谁能告诉我如何在 R 中做到这一点?提前致谢!

最佳答案

你可以试试cSplit

library(splitstackshape)
cSplit(df1, 'col1', ';')
# col1_1 col1_2 col1_3
#1: John Peter Eric
#2: Susan Mary Kate

或者

library(tidyr)
separate(df1, col1, into=paste0('col', 1:4), ';')[-4]
# col1 col2 col3
#1 John Peter Eric
#2 Susan Mary Kate

或者

 extract(df1, col1, into=paste0('col', 1:3), '([^;]+);([^;]+);([^;]+)')
# col1 col2 col3
#1 John Peter Eric
#2 Susan Mary Kate

或者使用base R

 as.data.frame(do.call(rbind,strsplit(df1$col1, ';')))

数据

df1 <- structure(list(col1 = c("John;Peter;Eric;", "Susan;Mary;Kate;"
)), .Names = "col1", class = "data.frame", row.names = c(NA, -2L))

关于R:拆分格式如下 "xxx; yyy; zzz;"的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29056377/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com