我需要总结一个字段才能绘制图形。我使用了下面的代码,但它给出的是rlang error
。
我还需要通过汇总计数来计算Fresh.email.date的计数
library(dplyr)
library(plyr)
f1 %>% group_by(Country, Vertical, Company.Size, Fresh.email.date) %>% summarise(Fresh.email.date, count = n())
Error: n() should only be called in a data context
Call `rlang::last_error()` to see a backtrace