Description Usage Arguments Value Author(s) References See Also
Learn the skeleton of a directed acyclic graph (DAG) from data using the Max-Min Parents and Children (MMPC) and the Semi-Interleaved HITON-PC constraint-based algorithms. ARACNE and Chow-Liu learn an approximation of that structure using pairwise mutual information coefficients.
1 2 3 4 5 6 7 | mmpc(x, cluster = NULL, whitelist = NULL, blacklist = NULL, test = NULL,
alpha = 0.05, B = NULL, debug = FALSE, optimized = TRUE, strict = FALSE)
si.hiton.pc(x, cluster = NULL, whitelist = NULL, blacklist = NULL, test = NULL,
alpha = 0.05, B = NULL, debug = FALSE, optimized = TRUE, strict = FALSE)
aracne(x, whitelist = NULL, blacklist = NULL, mi = NULL, debug = FALSE)
chow.liu(x, whitelist = NULL, blacklist = NULL, mi = NULL, debug = FALSE)
|
x |
a data frame containing the variables in the model. |
cluster |
an optional cluster object from package snow.
See |
whitelist |
a data frame with two columns (optionally labeled "from" and "to"), containing a set of arcs to be included in the graph. |
blacklist |
a data frame with two columns (optionally labeled "from" and "to"), containing a set of arcs not to be included in the graph. |
mi |
a character string, the estimator used for the pairwise
(i.e. unconditional) mutual information coefficients in the ARACNE
and Chow-Liu algorithms. Possible values are |
test |
a character string, the label of the conditional
independence test to be used in the algorithm.
If none is specified, the default test statistic is the mutual
information for categorical variables, the Jonckheere-Terpstra test
for ordered factors and the linear correlation for continuous
variables. See |
alpha |
a numeric value, the target nominal type I error rate. |
B |
a positive integer, the number of permutations considered
for each permutation test. It will be ignored with a warning if
the conditional independence test specified by the |
debug |
a boolean value. If |
optimized |
a boolean value. See |
strict |
a boolean value. If |
An object of class bn
.
See bn-class
for details.
Marco Scutari
Tsamardinos I, Aliferis CF, Statnikov A (2003). "Time and Sample Efficient Discovery of Markov Blankets and Direct Causal Relations". In "KDD '03: Proceedings of the Ninth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining", pp. 673-678. ACM.
Tsamardinos I, Brown LE, Aliferis CF (2006). "The Max-Min Hill-Climbing Bayesian Network Structure Learning Algorithm". Machine Learning, 65(1), 31-78.
Aliferis FC, Statnikov A, Tsamardinos I, Subramani M, Koutsoukos XD (2010). "Local Causal and Markov Blanket Induction for Causal Discovery and Feature Selection for Classification Part I: Algorithms and Empirical Evaluation". Journal of Machine Learning Research, 11, 171-234.
Margolin AA, Nemenman I, Basso K, Wiggins C, Stolovitzky G, Dalla Favera R, Califano A (2006). "ARACNE: An Algorithm for the Reconstruction of Gene Regulatory Networks in a Mammalian Cellular Context". BMC Bioinformatics, 7(Suppl 1):S7.
constraint-based algorithms, score-based algorithms, hybrid algorithms.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.