Nothing
### pcalg_search R6 class examples ###
# Generally, we do not recommend using the R6 classes directly, but rather
# use the disco() or any method function, for example pc(), instead.
# Load data
data(tpc_example)
# Recommended:
my_pc <- pc(engine = "pcalg", test = "fisher_z")
my_pc(tpc_example)
# or
disco(data = tpc_example, method = my_pc)
# Example with detailed settings:
# Using R6 class:
s <- PcalgSearch$new()
s$set_test(method = "fisher_z", alpha = 0.05)
s$set_data(tpc_example)
s$set_alg("pc")
g <- s$run_search()
print(g)
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.