Description Details Author(s) Examples
assertive
contains lots of is_*
functions to check the
state of your variables, and assert_*
functions to throw errors
if they aren't in the right form.
When the package loads, it creates a global option
"assertive.severity"
that determines what happens when an
assert_*
function's input fails the condition. By default, an error
is thrown but it is possible to generate warnings or messages instead (see
the examples).
Richard Cotton richierocks@gmail.com
1 2 3 | is_numeric(1:10)
assert_all_are_positive(1:10)
dont_stop(assert_is_scalar(runif(10)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.