The structures of networks sometimes vary as a function of certain external variables.
For instance, Pe et al. (2015) found that the structure of mood networks varied
as a function of whether or not individuals had been diagnosed with major depression.
The structures of networks may also vary as a function of internal variables;
that is to say, as a function of each node. Impact statistics measure the degree to which
node levels impact network structure. Impact statistics are similar to centrality statistics
in the sense that they are a property of each node in a network.
Three relevant impact statistics are included
in the networktools
package: global strength impact, network structure
impact, and edge impact. To ease computational burden, all three statistics are calculated
simultaneously in the impact
function. They can also be calculated separately
using global.impact
, structure.impact
, and edge.impact
.
Impact statistics are calculated by temporarily regarding a node as an external variable
to the network. The remaining data are then divided into two networks according to a median
split (default) on the external node. Network invariance measures are then computed on the two networks.
While median splits are not advisable when continuous analyses are possible, it is not possible
to compute networks in a continuous fashion.
The median split excludes observations that fall exactly on the median. In the case of binary data, data are split
by level rather than by median.