Nothing
test_that(
"`std` is not logical",
{
mods <- mapply(
x = keys, y = names(keys), SIMPLIFY = FALSE,
FUN = function(x, y) paste(y, "=~", paste(x, collapse = " + "))
)
expect_error(
sem.check(mods, BFIGritHope, keys, std = 42),
"`std` is not logical"
)
}
)
test_that(
"`mods` is not a list",
{
mods <- mapply(
x = keys, y = names(keys), SIMPLIFY = FALSE,
FUN = function(x, y) paste(y, "=~", paste(x, collapse = " + "))
)
expect_error(
sem.check(mods$grit_c, BFIGritHope, keys),
"`mods` is not a list"
)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.