gpt4 book ai didi

r - 如何在 dplyr 中用不等列(反向 toString)分隔

转载 作者:行者123 更新时间:2023-12-01 08:11:06 25 4
gpt4 key购买 nike

我正在处理调查数据,试图在单个列中提供多个响应。问题是可能有 1-5 个答案,用逗号分隔。

我如何打开它:

df <- data.frame(
splitThis = c("A,B,C","B,C","A,C","A","B","C")
)

> df
splitThis
1 A,B,C
2 B,C
3 A,C
4 A
5 B
6 C

进入这个:

intoThis <- data.frame(
A = c(1,0,1,1,0,0),
B = c(1,1,0,0,1,0),
c = c(1,1,1,0,0,1)
)

> intoThis
A B c
1 1 1 1
2 0 1 1
3 1 0 1
4 1 0 0
5 0 1 0
6 0 0 1

感谢任何争论的帮助!

最佳答案

我们可以使用 qdapTools 中的 mtabulate 拆分后 ,

library(qdapTools)
mtabulate(strsplit(as.character(df$splitThis), ","))
# A B C
#1 1 1 1
#2 0 1 1
#3 1 0 1
#4 1 0 0
#5 0 1 0
#6 0 0 1

正如 OP 还提到的 dplyr/tidyr

library(dplyr)
library(tidyr)
library(tibble)
rownames_to_column(df, "rn") %>%
separate_rows(splitThis) %>%
table()

或者使用tidyverse

rownames_to_column(df, "rn") %>%
separate_rows(splitThis) %>%
group_by(rn, splitThis) %>%
tally %>%
spread(splitThis, n, fill=0) %>%
ungroup() %>%
select(-rn)
# A tibble: 6 × 3
# A B C
#* <dbl> <dbl> <dbl>
#1 1 1 1
#2 0 1 1
#3 1 0 1
#4 1 0 0
#5 0 1 0
#6 0 0 1

关于r - 如何在 dplyr 中用不等列(反向 toString)分隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41640722/

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