Node-wise (i.e. vertex-wise) graph metrics
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)
} # }