Skip to contents

Node-wise (i.e. vertex-wise) graph metrics

Usage

graph_node_metrics(x, verbosity = 1L)

Arguments

x

igraph network.

verbosity

Integer: Verbosity level.

Author

EDG

Examples

if (FALSE) { # \dontrun{
datcor <- cor(rnormmat(20, 20, seed = 2021))
datcor[sample(seq(datcor), 250)] <- 0
x <- igraph::graph_from_adjacency_matrix(
  adjmatrix = datcor,
  mode = "lower",
  weighted = TRUE,
  diag = FALSE
)

graph_node_metrics(x)
} # }