Nothing
# Internal function. Examples only provided for developers extending
# causalDisco.
# Here exemplified through the pc algorithm.
# --- pcalg engine -------------------------------------------------------------
# Valid arguments for pcalg::pc (distributed to the algorithm)
pc_args_ok <- list(skel.method = "stable", numCores = 1, verbose = FALSE)
dist_pcalg <- check_args_and_distribute_args(
search = NULL,
args = pc_args_ok,
engine = "pcalg",
alg = "pc",
test = "gaussCItest"
)
# Inspect what will be forwarded
dist_pcalg$alg_args
dist_pcalg$score_args # pcalg PC doesn't forward score args by default
# Intentional error: unknown argument for pcalg::pc
pc_args_bad <- list(foo = "bar")
try(
check_args_and_distribute_args(
search = NULL,
args = pc_args_bad,
engine = "pcalg",
alg = "pc",
test = "gaussCItest"
)
)
# --- bnlearn engine -----------------------------------------------------------
# Valid arguments for bnlearn::pc.stable
bn_args_ok <- list(alpha = 0.05, debug = FALSE)
dist_bn <- check_args_and_distribute_args(
search = NULL,
args = bn_args_ok,
engine = "bnlearn",
alg = "pc.stable"
)
# The bnlearn checker returns the validated args (no distribution needed)
dist_bn
# Intentional error: unknown argument for bnlearn::pc.stable
bn_args_bad <- list(does_not_exist = TRUE)
try(
check_args_and_distribute_args(
search = NULL,
args = bn_args_bad,
engine = "bnlearn",
alg = "pc.stable"
),
silent = TRUE
)
# --- tetrad engine (run only if rJava is available) ---------------------------
# This block is skipped on systems without rJava and Tetrad to keep examples CRAN-safe.
if ((verify_tetrad()$installed) && verify_tetrad()$java_ok) {
if (!isTRUE(rJava::.jniInitialized)) {
# Initialize JVM if needed (no-op if already initialized)
init_java()
}
# Minimal Tetrad setup: build a search object and distribute PC args.
search_tetrad <- TetradSearch$new()
# Example with a common Tetrad CI test;
# adjust if you use a different test name.
dist_tetrad <- check_args_and_distribute_args(
search = search_tetrad,
args = list(verbose = TRUE), # forwarded to search$set_verbose()
engine = "tetrad",
alg = "pc",
test = "fisher_z"
)
# Inspect distributed arguments to alg/test/score
dist_tetrad$alg_args
dist_tetrad$test_args
dist_tetrad$score_args
# Intentional error: pass an argument that Tetrad doesn't accept
try(
check_args_and_distribute_args(
search = search_tetrad,
args = list(not_a_param = 123),
engine = "tetrad",
alg = "pc",
test = "fisher-z"
),
silent = TRUE
)
}
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.