require.nowarnings | R Documentation |
Turn off all warnings for require(), to allow clean completion of examples that require unavailable Suggested packages.
require.nowarnings(package, lib.loc = NULL, character.only = FALSE)
package |
The name of a package, given as a character string. |
lib.loc |
a character vector describing the location of R library trees
to search through, or |
character.only |
a logical indicating whether |
require(package)
acts the same as
require(package, quietly = TRUE)
but with warnings turned off.
In particular, no warning or error is given if the package is unavailable.
Most cases should use requireNamespace(package, quietly = TRUE)
instead,
which doesn't produce warnings.
require.nowarnings
returns (invisibly) TRUE
if it succeeds, otherwise FALSE
require()
## This should produce no output:
if (require.nowarnings(nonexistent)) {
message("Package loaded successfully")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.