#til #rstats Suppress all package startup messages with a single suppressPackageStartupMessages() rather than putting it around every library call.
support.bioconductor.org/p/9…
2
8
37
Yes. Even better to just do
suppressMessages({
library(splines)
library(ggplot2)
library(dplyt)
...
})
as you then also catch non-conformant packages NOT using startup messages. This really silences *evreything* which is a nice feature.
Dec 2, 2021 · 9:44 PM UTC
6
12


