Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

print.HydeNetwork

Print a HydeNetwork


Description

Prints a HydeNetwork object with a brief summary of each node.

Usage

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

Arguments

x

a HydeNetwork object

...

additional arguments to be passed to print methods. Currently none in use.

Details

The summary of each node follows the format
node name | parents
node type (parameter)
estimated from data (or not)
formula

Author(s)

Jarrod Dalton and Benjamin Nutter

Examples

data(PE, package="HydeNet")
Net <- HydeNetwork(~ wells + 
                     pe | wells + 
                     d.dimer | pregnant*pe + 
                     angio | pe + 
                     treat | d.dimer*angio + 
                     death | pe*treat) 
print(Net)  
print(Net, d.dimer) 
                    
Net <- setNode(Net, d.dimer, 
                  nodeType='dnorm', mean=fromData(), sd=fromData(), 
                  nodeFormula = d.dimer ~ pregnant + pe,
                  nodeFitter='lm')
print(Net, d.dimer)

HydeNet

Hybrid Bayesian Networks Using R and JAGS

v0.10.11
MIT + file LICENSE
Authors
Jarrod E. Dalton <daltonj@ccf.org> and Benjamin Nutter <benjamin.nutter@gmail.com>
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.