plot.bnc_dag {bnclassify} | R Documentation |
Plot the structure.
Description
If node labels are to small to be viewed properly, you may fix label fontsize with argument fontsize. Also, you may try multiple different layouts.
Usage
## S3 method for class 'bnc_dag'
plot(x, y, layoutType = "dot", fontsize = NULL, ...)
Arguments
x |
The |
y |
Not used |
layoutType |
a character. Optional. |
fontsize |
integer Font size for node labels. Optional. |
... |
Not used. |
Examples
# Requires the igraph package to be installed.
data(car)
nb <- nb('class', car)
nb <- nb('class', car)
## Not run: plot(nb)
## Not run: plot(nb, fontsize = 20)
## Not run: plot(nb, layoutType = 'circo')
## Not run: plot(nb, layoutType = 'fdp')
## Not run: plot(nb, layoutType = 'osage')
## Not run: plot(nb, layoutType = 'twopi')
## Not run: plot(nb, layoutType = 'neato')
[Package bnclassify version 0.4.8 Index]