我在R中使用mongodb创建的数据集,使用蒙古石 我得到一个看起来像这样的列表:
_id A B A B A B NA NA
1 a 1 b 2 e 5 NA NA
2 k 4 l 3 c 3 d 4
我想合并数据集,如下所示:
_id A B
1 a 1
2 k 4
1 b 2
2 l 3
1 e 5
2 c 3
1 NA NA
2 d 4
最后一列中的NAs
存在,因为列是从第一个条目命名的,如果后面的条目有更多的列,那么它们不会为它们分配名称,(如果我得到了帮助,这也很棒,但这不是我在这里的原因)。
此外,对于数据集的不同子集,列数可能不同。
我已经尝试了melt()
,但因为它是一个列表而不是数据帧,所以它没有按预期工作,我尝试了stack()
但它没有用,因为列有相同的名称和一些他们甚至都没有名字。
我知道这是一个非常奇怪的情况,并感谢任何帮助。
谢谢。
答案 0 :(得分:0)
使用library(magrittr)
数据:
df <- fread("
_id A B A B A B NA NA
1 a 1 b 2 e 5 NA NA
2 k 4 l 3 c 3 d 4 ",header=T)
setDF(df)
代码:
df2 <- df[,-1]
odds<- df2 %>% ncol %>% {(1:.)%%2} %>% as.logical
even<- df2 %>% ncol %>% {!(1:.)%%2}
cbind(df[,1,drop=F],
A=unlist(df2[,odds]),
B=unlist(df2[,even]),
row.names=NULL)
结果:
# _id A B
# 1 1 a 1
# 2 2 k 4
# 3 1 b 2
# 4 2 l 3
# 5 1 e 5
# 6 2 c 3
# 7 1 <NA> NA
# 8 2 d 4
答案 1 :(得分:0)
我们可以使用data.table
。假设A和B总是互相跟随。我在标题中创建了一组包含2组NA的示例。使用grep,我们可以找到名为V8等的fread
。使用R的向量回收,您可以一次重命名多个标题。如果在您的情况下这些名称不同,请更改grep命令中的模式。然后我们在via melt中融化数据
library(data.table)
df <- fread("
_id A B A B A B NA NA NA NA
1 a 1 b 2 e 5 NA NA NA NA
2 k 4 l 3 c 3 d 4 e 5",
header = TRUE)
df
_id A B A B A B A B A B
1: 1 a 1 b 2 e 5 <NA> NA <NA> NA
2: 2 k 4 l 3 c 3 d 4 e 5
# assuming A B are always following each other. Can be done in 1 statement.
cols <- names(df)
cols[grep(pattern = "^V", x = cols)] <- c("A", "B")
names(df) <- cols
# melt data (if df is a data.frame replace df with setDT(df)
df_melted <- melt(df, id.vars = 1,
measure.vars = patterns(c('A', 'B')),
value.name=c('A', 'B'))
df_melted
_id variable A B
1: 1 1 a 1
2: 2 1 k 4
3: 1 2 b 2
4: 2 2 l 3
5: 1 3 e 5
6: 2 3 c 3
7: 1 4 <NA> NA
8: 2 4 d 4
9: 1 5 <NA> NA
10: 2 5 e 5
答案 2 :(得分:0)
感谢您的帮助,他们是伟大的灵感。 尽管@Andre Elrico给出了一个在可重现的例子中起作用的解决方案,但@phiver提供的解决方案在我的整体问题上效果更好。 通过使用这两个我想出了以下内容。
library(data.table)
#The data were in a list of lists called list for this example
temp <- as.data.table(matrix(t(sapply(list, '[', seq(max(sapply(list, lenth))))),
nrow = m))
# m here is the number of lists in list
cols <- names(temp)
cols[grep(pattern = "^V", x = cols)] <- c("B", "A")
#They need to be the opposite way because the first column is going to be substituted with id, and this way they fall on the correct column after that
cols[1] <- "id"
names(temp) <- cols
l <- melt.data.table(temp, id.vars = 1,
measure.vars = patterns(c("A", "B")),
value.name = c("A", "B"))
这样我也可以使用它,如果我有两个以上的列,我需要像这样操作。