df %>%
# distinct(col1,col2, col3) # you don't need this row, remove it.
group_by(col1, col2, col3) %>% # you have to group by all columns you want to check
summarize(count = n()) %>% # quotes are not needed, but are not wrong
ungroup() # Always add ungroup() at the end to solve future problems
3条答案
按热度按时间f2uvfpb91#
hjzp0vay2#
使用
plyr
可以吗?输出量:
yh2wf1be3#
使用
dplyr
执行此操作的最佳方法是使用Vinícius Félix's response建议的count()
然而,这里有一个使用你开始的语法的修复。你的思考方向是正确的。
媒介柜
代码的解决方案
输出
创建于2022年12月3日,使用reprex v2.0.2