printBN {MoTBFs} | R Documentation |
BN printing
Description
Prints the content of a hybrid Bayesian network
Usage
printBN(MoTBF.BN)
Arguments
MoTBF.BN |
The output of the method |
Value
The results of the fitted functions in the full network.
See Also
Examples
## Dataset Ecoli
require(MoTBFs)
data(ecoli)
data <- ecoli[,-c(1)] ## remove variable sequence
## Directed acyclic graph
dag <- LearningHC(data)
## Learning BN
intervals <- 3
potential <- "MOP"
P <- MoTBFs_Learning(graph = dag, data = data, numIntervals = intervals, POTENTIAL_TYPE=potential,
maxParam = 15)
printBN(P)
[Package MoTBFs version 1.4.1 Index]