print.net_bayes: Print method for net_bayes

View source: R/bayes_compare.R

print.net_bayesR Documentation

Print method for net_bayes

Description

Print method for net_bayes

Usage

## S3 method for class 'net_bayes'
print(x, ...)

Arguments

x

A net_bayes object.

...

Additional arguments (ignored).

Value

The input object, invisibly.

Examples

s1 <- data.frame(V1 = c("A","B","C"), V2 = c("B","C","A"))
s2 <- data.frame(V1 = c("A","C","B"), V2 = c("C","B","A"))
b <- bayes_compare(build_network(s1, method = "relative"),
                   build_network(s2, method = "relative"),
                   draws = 500, seed = 1)
print(b)

Nestimate documentation built on July 11, 2026, 1:09 a.m.