The default display method for bbni objects. It provides
a one-line overview instead of a statistical summary; use
summary() for posterior statistics and plot() for trace plots.
Usage
# S3 method for class 'bbni'
print(x, ...)Arguments
- x
A
bbniobject returned byrun_bbni().- ...
Additional arguments (ignored).
Examples
set.seed(123)
net <- GenerateNetwork(5)
data <- GenerateSample(net, 100)
res <- run_bbni(data, num_update = 50)
print(res)
#> <bbni> Bayesian Boolean Network Inference MCMC output
#> 5 nodes | 50 outer iterations | time-series data
#> Use summary() for posterior edge statistics and plot() for the trace plot.