print.HydeNetwork: Print a HydeNetwork

Description Usage Arguments Details Author(s) Examples

View source: R/print.HydeNetwork.R

Description

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

Usage

1
2
## 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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
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)
    

nutterb/HydeNet documentation built on July 13, 2020, 5:21 p.m.