使用命令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())即可

相关文章:

  • 2021-10-14
  • 2022-01-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2021-10-08
  • 2021-06-22
  • 2021-08-20
  • 2021-05-18
相关资源
相似解决方案