r程序中的类变量分组和计数

时间:2018-02-16 08:20:06

标签: r count

df%>%
  group_by(product) %>% summarise(a=count(stages))

我的数据框如上所述,我希望按产品分组,并计算每种产品的阶段数。

Product Page 1  Page 2  Submit
Auto    counts  counts  counts
Credit  counts  counts  counts
Person  counts  counts  counts

我收到错误说 - 评估错误:没有适用于'组的方法'适用于类"因素"。

的对象

如何应用具有三个或更多级别(阶段列)的因子计数,并且我的预期输出表位于所有阶段级别成为标题的位置之下。

{{1}}

1 个答案:

答案 0 :(得分:-2)

它不会让你的桌子分一步,但为什么你不做这样的事情:

df %>%
group_by(product, stage) %>%
summarise(count = n())

这应该可以为您提供您可以根据需要重新格式化的数据。