betweenness_network {tna} | R Documentation |
Build and Visualize a Network with Edge Betweenness
Description
This function builds a network from a transition matrix in a tna
object
and computes edge betweenness for the network.
Usage
betweenness_network(x, ...)
## S3 method for class 'tna'
betweenness_network(x, ...)
Arguments
x |
A |
... |
Ignored. |
Value
A tna
object where the edge weights are edge betweenness values.
See Also
Centrality measure functions
centralities()
,
plot.group_tna_centralities()
,
plot.tna_centralities()
,
print.group_tna_centralities()
,
print.tna_centralities()
Examples
model <- tna(group_regulation)
betweenness_network(model)
[Package tna version 1.0.0 Index]