nutterb / HydeNet

Hybrid Decision Networks in R
Other
23 stars 3 forks source link

Add nodes= argument to print.HydeNetwork #27

Closed jdutch27 closed 9 years ago

jdutch27 commented 9 years ago

This is neither important nor urgent.

What about optionally specifying a vector of node names to print.HydeNetwork so as to restrict the output?

nutterb commented 9 years ago

This will require explicitly calling the print function.

autoNet <- HydeNetwork(~ wells
                       + pe | wells
                       + d.dimer | pregnant*pe
                       + angio | pe
                       + treat | d.dimer*angio
                       + death | pe*treat,
                       data = PE)
print(autoNet, wells, treat, death)