tidyverse报错:Error: Problem with `summarise()` input `..1`.
使用命令df = OG %>% group_by(Gene,Domain) %>% summarise(count())
出现如下报错:
Error: Problem with `summarise()` input `..1`.
i `..1 = count()`.
x no applicable method for 'count' applied to an object of class "NULL"
把命令改为df = OG %>% group_by(Gene,Domain) %>% summarise(n = n())
即可
本文来自博客园,作者:橙子牛奶糖(陈文燕),转载请注明原文链接:https://www.cnblogs.com/chenwenyan/p/15163103.html