我试图计算某个字符串出现在 Dataframe 中的示例(这将是一个子字符串,即“blue”将出现在更大的文本块中),然后通过另一个字段总结这些计数。
代码如下:
totals_by_county <- county_data %>%
group_by(county_data$county)%>%
summarise(number_occurences = count(grepl('blue', county_data$color,ignore.case = TRUE)))
totals_by_county
我得到这个错误:
“summarise_”没有适用的方法应用于类“logical”的对象
在我上面尝试使用的方法中有没有方法可以做到这一点?
1条答案
按热度按时间rta7y2nd1#
grepl
:或者,将
count_if
从expss
转换为:更新可重现的示例: