Plot an UndirectedNet object
## S3 method for class 'Rcpp_UndirectedNet' plot(x, ...)
x
: the object...
: additional parameters for plot.networkThis is a thin wrapper around plot.network
.
el <- matrix(c(1,2),ncol=2) net <- new(UndirectedNet, el, 5L) net[1,5] <- 1 net[2,5] <- 1 plot(net)