plot.Rcpp_UndirectedNet function

Plot an UndirectedNet object

Plot an UndirectedNet object

## S3 method for class 'Rcpp_UndirectedNet' plot(x, ...)

Arguments

  • x: the object
  • ...: additional parameters for plot.network

Details

This is a thin wrapper around plot.network.

Examples

el <- matrix(c(1,2),ncol=2) net <- new(UndirectedNet, el, 5L) net[1,5] <- 1 net[2,5] <- 1 plot(net)