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.
Arguments
- x
Any expression, usually a function call.
- quiet
(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
).