我正在函数中运行一个命令,我想静音输出。
特别是,我想让这两个输出保持沉默
summarise()` ungrouping output (override with `.groups` argument)
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
一个发生在我使用group_by()%
您可以手动设置bins
以覆盖显示有关geom_histogram
的消息。
要避免来自的消息,请使用@LC-datascientist提到的
。
library(dplyr)
library(ggplot2)
suppressMessages(mtcars %>%
group_by(cyl, am) %>%
summarise(mpg = sum(mpg)) %>%
ggplot() + aes(am) + geom_histogram(bins = 10))