View source: R/adverb-quietly.R
quietly | R Documentation |
Create a modified version of .f
that captures side-effects along with
the return value of the function and returns a list containing
the result
, output
, messages
and warnings
.
quietly(.f)
.f |
A function to modify, specified in one of the following ways:
|
A function that takes the same arguments as .f
, but returns
a different value, as described above.
This function is called an adverb because it modifies the effect of a function (a verb). If you'd like to include a function created an adverb in a package, be sure to read faq-adverbs-export.
Other adverbs:
auto_browse()
,
compose()
,
insistently()
,
negate()
,
partial()
,
possibly()
,
safely()
,
slowly()
f <- function() {
print("Hi!")
message("Hello")
warning("How are ya?")
"Gidday"
}
f()
f_quiet <- quietly(f)
str(f_quiet())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.