Print a HydeNetwork
Prints a HydeNetwork object with a brief summary of each node.
## S3 method for class 'HydeNetwork' print(x, ...)
x |
a |
... |
additional arguments to be passed to print methods. Currently none in use. |
The summary of each node follows the format
node name | parents
node type (parameter)
estimated from data (or not)
formula
Jarrod Dalton and Benjamin Nutter
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)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.