plot.abnDag {abn} | R Documentation |
abnDag
Plots DAG from an object of class abnDag
## S3 method for class 'abnDag'
plot(x, new = TRUE, ...)
x |
Object of class |
new |
defaults to |
... |
additional parameters. Not used at the moment. |
Rgraphviz::plot
mydag <- createAbnDag(dag = ~a+b|a, data.df = data.frame("a"=1, "b"=1))
plot(mydag)