Description Usage Arguments Details Value Functions See Also Examples
Checks class and structure of MCMC objects.
chk_mcmcarray
checks if mcmcarray-object()
object using
is.array(x) && is.numeric(x)
chk_mcmcr
checks if an mcmcr-object()
.
chk_mcmcrs
checks if an mcmcrs-object()
.
1 2 3 4 5 | chk_mcmcarray(x, x_name = NULL)
chk_mcmcr(x, x_name = NULL)
chk_mcmcrs(x, x_name = NULL)
|
x |
The object to check. |
x_name |
A string of the name of object x or NULL. |
To just check class use chk::chk_s3_class()
.
NULL
, invisibly. Called for the side effect of throwing an error
if the condition is not met.
chk_mcmcarray
: Check mcmcarray Object
chk_mcmcr
: Check mcmcr Object
chk_mcmcrs
: Check mcmcrs Object
1 2 3 4 5 6 7 8 9 10 | # chk_mcmcarray
try(chk_mcmcarray(1))
# chk_mcmcr
chk_mcmcr(as.mcmcr(list(x = 1)))
try(chk_mcmcr(1))
# chk_mcmcrs
chk_mcmcrs(as.mcmcrs(as.mcmcr(list(x = 1))))
try(chk_mcmcrs(1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.