如何识别属于每个组的记录,同时夏令时获取R中的计数

时间:2016-06-11 18:08:00

标签: r dataframe group-by dplyr plyr

我想执行2个给定列的groupby,计算这些组中的行数,以及存储哪些行(ID)属于每个组。

以下内容可帮助我分组并获取计数

set.seed(1000)
df <- data.frame(col1= sample(c(1:15), 15, replace = F),
col2=sample(c("aa", "bb","cc"), 15, replace=TRUE),
col3=sample(c('a','b','c','d'), 15, replace=TRUE,    prob=c(0.25, 0.25, 0.20, 0.30)))

View(df)

enter image description here

grp<- df%>%
group_by(col2, col3) %>%
summarise(n=n())

enter image description here

如果col1存储行ID,那么跟踪属于每个组的所有rowid的正确方法是什么?

1 个答案:

答案 0 :(得分:2)

我现在看到你的样子。试试这个:

library(dplyr)
set.seed(1000)
df <- data.frame(col1= sample(c(1:15), 15, replace = F),
                 col2=sample(c("aa", "bb","cc"), 15, replace=TRUE),
                 col3=sample(c('a','b','c','d'), 15, replace=TRUE,
                              prob=c(0.25, 0.25, 0.20, 0.30)))


grp<-df %>%
  group_by(col2, col3) %>%
  summarise(n=n(), rows=paste(col1, collapse = ", "))
grp

col2   col3     n               rows
(fctr) (fctr) (int)              (chr)
aa      b     6 5, 1, 15, 13, 8, 3
aa      c     1                  9
bb      a     3           6, 12, 4
bb      b     1                  2
bb      d     1                 11
cc      c     1                 14
cc      d     2              7, 10

如果你需要将它分开(如与df分离),那么只需要rowsByGrp<-grp$rows并使用该向量,但是你需要它。如果您希望它实际上是名为list,那么:

rowsByGrp<-grp$rows 
rows.list<-lapply(1:length(rowsByGrp), function(x) rowsByGrp[x])
names(rows.list)<-paste(grp$col2 , grp$col3, sep = "_")
rows.list  

    $aa_b
[1] "5, 1, 15, 13, 8, 3"

$aa_c
[1] "9"

$bb_a
[1] "6, 12, 4"

$bb_b
[1] "2"

$bb_d
[1] "11"

$cc_c
[1] "14"

$cc_d
[1] "7, 10"