data(tpc_example)
# Requires Tetrad to be installed
if (verify_tetrad()$installed && verify_tetrad()$java_ok) {
# Recommended path using disco()
boss_fci_tetrad <- boss_fci(
engine = "tetrad",
score = "sem_bic",
test = "fisher_z"
)
disco(tpc_example, boss_fci_tetrad)
# or using boss_fci_tetrad directly
boss_fci_tetrad(tpc_example)
}
#### With tier knowledge ####
if (verify_tetrad()$installed && verify_tetrad()$java_ok) {
kn <- knowledge(
tpc_example,
tier(
child ~ tidyselect::starts_with("child"),
youth ~ tidyselect::starts_with("youth"),
oldage ~ tidyselect::starts_with("oldage")
)
)
# Recommended path using disco()
boss_fci_tetrad <- boss_fci(
engine = "tetrad",
score = "sem_bic",
test = "fisher_z"
)
disco(tpc_example, boss_fci_tetrad, knowledge = kn)
# or using boss_fci_tetrad directly
boss_fci_tetrad <- boss_fci_tetrad |> set_knowledge(kn)
boss_fci_tetrad(tpc_example)
}
# With all algorithm arguments specified
if (verify_tetrad()$installed && verify_tetrad()$java_ok) {
boss_fci_tetrad <- boss_fci(
engine = "tetrad",
score = "poisson_prior",
test = "rank_independence",
depth = 3,
max_disc_path_length = 5,
use_bes = FALSE,
use_heuristic = FALSE,
complete_rule_set_used = FALSE,
guarantee_pag = TRUE
)
disco(tpc_example, boss_fci_tetrad)
}
Run the code above in your browser using DataLab