compute_node_metric {graph4lg} | R Documentation |
Compute graph-theoretic metrics from a graph at the node level
Description
The function computes graph-theoretic metric values at the node level.
Usage
compute_node_metric(
graph,
metrics = c("deg", "close", "btw", "str", "siw", "miw"),
weight = TRUE
)
Arguments
graph |
An object of class |
metrics |
Character vector specifying the graph-theoretic metrics computed at the node-level in the graphs Graph-theoretic metrics can be:
By default, the vector |
weight |
Logical which indicates whether the links are weighted during
the calculation of the centrality indices betweenness and closeness.
(default: |
Value
A data.frame
with the node names and the metrics computed.
Author(s)
P. Savary
Examples
data(data_ex_genind)
mat_gen <- mat_gen_dist(x = data_ex_genind, dist = "DPS")
graph <- gen_graph_thr(mat_w = mat_gen, mat_thr = mat_gen,
thr = 0.8)
res_met <- compute_node_metric(graph)