Strength
From SONIVIS:Wiki
Strength
|
The Strength sums the weight of all edges which a certain node is connected with. It can be applied in directed and undirected networks.
Objective
This measure can give first insights on how stable the relations of a node in the network are. It is also called weighted node degree. Further examples can be taken from Barrat et. al. 2004[1].
Calculation
This calculation is the absolute sum of all edges weights for a node extracted from the adjacency matrix. The adapted calculation from Barrat et. al. 2004[1] is as follows:
with wij as intensity of the relation between two nodes i and j, and aij as adjacency matrix of the information space.
Statement
| R example |
| g <- graph.star(10) E(g)$weight <- seq(ecount(g)) |

