Skip to contents

Quantifies different topological properties of a multilayer network.

Usage

ml_properties (g.list, treatments)

Arguments

g.list

List of igraph objects (multilayer network).

treatments

A vector with the names of each layer.

Value

The function returns a data.frame, which contains networks' topological metrics.

Examples


data ("mlnet_dstoolAB")

# The vector with layers' names
t <- c("before", "after")

ml_properties (mlnet_dstoolAB, treatments = t)
#>   Treatments Mean_degree sd_degree Clusterization Edge_density Connected_nodes
#> 1     before  0.05263158 0.2240351            NaN 0.0003485535      0.05263158
#> 2      after  0.22368421 0.8550386              1 0.0014813524      0.07236842
#>   Modularity
#> 1  0.7500000
#> 2  0.5259516