是的,你可以理解,但我不明白问题是什么。 summarize 和 summarize_each 的工作方式完全不同。 summarize 实际上更简单——只需直接指定表达式: 1 2 3 4 iris %>% group_by(Species) %>% select(Sepal.Length) %>% summarize(Sepal.Length = mean(Sepal.Length)) 您可以为输出列选择任何名称,它不需要与输...
Takes the sensitivity data from a PharmacoSet, and summarises them into a drug vs cell line tablepSet