shush()
is a wrapper around suppressMessages()
and suppressWarnings()
that allows you to suppress messages and warnings in a single function call.
It was designed to be used with pipes.
shush(x, quiet = TRUE)
Any expression, usually a function call.
(optional) A logical flag value indicating
whether to suppress messages and warnings. This is can be used for
condition messages and warnings inside functions (default: TRUE
).
The same object as x
with messages and warnings suppressed.