bnsl_p {BNSL}R Documentation

Bayesian Network Structure Learning

Description

The function outputs the Bayesian network structure given a dataset based on an assumed criterion.

Usage

 bnsl_p(df, psl, tw = 0, proc = 1, s=0, n=0, ss=1)

Arguments

df

a dataframe.

psl

the list of parent sets.

tw

the upper limit of the parent set.

proc

the criterion based on which the BNSL solution is sought. proc=1,2, and 3 indicates that the structure learning is based on Jeffreys [1], MDL [2,3], and BDeu [3]

s

The value computed when obtaining the bound.

n

The number of samples.

ss

The BDeu parameter.

Value

The Bayesian network structure in the bn class of bnlearn.

Author(s)

Joe Suzuki and Jun Kawahara

References

[1] Suzuki, J. “An Efficient Bayesian Network Structure Learning Strategy", New Generation Computing, December 2016. [2] Suzuki, J. “A construction of Bayesian networks from databases based on an MDL principle", Uncertainty in Artificial Intelligence, pages 266-273, Washington D.C. July, 1993. [3] Suzuki, J. “Learning Bayesian Belief Networks Based on the Minimum Description Length Principle: An Efficient Algorithm Using the B & B Technique", International Conference on Machine Learning, Bali, Italy, July 1996" [4] Suzuki, J. “A Theoretical Analysis of the BDeu Scores in Bayesian Network Structure Learning", Behaviormetrika 1(1):1-20, January 2017.

See Also

parent

Examples

library(bnlearn)
p0 <- parent.set(lizards, 0)
p1 <- parent.set(lizards, 1)
p2 <- parent.set(lizards, 2)
bnsl_p(lizards, list(p0, p1, p2))

[Package BNSL version 0.1.4 Index]