I'm running a command in a function and I'd like to silence the output.
In particular, there's these two outputs that I'd like to silence
summarise()` ungrouping output (override with `.groups` argument)
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
One happens when I use group_by() %>% summarize() and the second happens when I use geom_histogram(). They're not warnings, so I don't think suppressWarnings will work.