summary {multinet} | R Documentation |
Summarise a multilayer network
Description
This function produces a summary of the network, flattened and layer-by-layer
Usage
## S3 method for class 'Rcpp_RMLNetwork'
summary(object, ...)
Arguments
object |
A multilayer network. |
... |
Not used. |
Value
A data frame with the following columns: n: number of actors/vertices, m: number of edges, dir: directionality (0:undirected, 1:directed), nc: number of components (strongly connected components for directed graphs), slc: size of largest (strongly connected) component, dens: density, cc: clustering coefficient (corresponding to transitivity in igraph), apl: average path length, dia: diameter
Examples
net <- ml_aucs()
summary(net)
[Package multinet version 4.2 Index]