Nothing
testthat::test_that(
desc = "Set confounds",
code = {
## passer function
model_1 <- make_model('X -> Y') %>%
set_confound('Y <-> X')
model_2 <- make_model('X -> Y') %>%
set_confound('Y <-> X')
expect_identical(model_1, model_2)
}
)
testthat::test_that(
desc = "Confound errors",
code = {
## passer function
model_1 <- make_model('X -> M -> Y') %>%
set_confound(list('Y <-> X','Y <-> M'))
model_2 <- make_model('X -> M -> Y') %>%
set_confound(list('Y <-> X','Y <-> M'))
expect_identical(model_1, model_2)
}
)
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.