Nothing
test_that("disco warns when using known Tetrad bug about required for fci alg family", {
skip_if_no_tetrad()
data(tpc_example)
kn <- knowledge(
tpc_example,
child_x1 %-->% youth_x3
)
tetrad_fci <- fci(
engine = "tetrad",
test = "conditional_gaussian",
alpha = 0.05
)
expect_warning(
disco(data = tpc_example, method = tetrad_fci, knowledge = kn),
"The Tetrad FCI-family algorithms"
)
})
test_that("disco errors when using known Tetrad bug about required for boss alg family", {
skip_if_no_tetrad()
data(tpc_example)
kn <- knowledge(
tpc_example,
child_x1 %-->% youth_x3
)
tetrad_fci <- boss(
engine = "tetrad",
score = "sem_bic"
)
expect_error(
disco(data = tpc_example, method = tetrad_fci, knowledge = kn),
"The Tetrad BOSS-family algorithms"
)
})
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.