plot.Rcpp_UndirectedNet {lolog}R Documentation

Plot an UndirectedNet object

Description

Plot an UndirectedNet object

Usage

## 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)

[Package lolog version 1.3.1 Index]