print.abnDag {abn} | R Documentation |
abnDag
Print objects of class abnDag
## S3 method for class 'abnDag'
print(x, digits = 3L, ...)
x |
Object of class |
digits |
number of digits of the adjacency matrix. |
... |
additional parameters. Not used at the moment. |
outputs adjacency matrix and statement of the class of x
.
mydag <- createAbnDag(dag = ~a+b|a, data.df = data.frame("a"=1, "b"=1))
print(mydag)