net.loads {EGAnet} | R Documentation |
Network Loadings
Description
Computes the between- and within-community
strength
of each variable for each community
Usage
net.loads(
A,
wc,
loading.method = c("BRM", "experimental"),
scaling = 2,
rotation = NULL,
...
)
Arguments
A |
Network matrix, data frame, or |
wc |
Numeric or character vector (length = |
loading.method |
Character (length = 1).
Sets network loading calculation based on implementation
described in |
scaling |
Numeric (length = 1).
Scaling factor for the magnitude of the |
rotation |
Character.
A rotation to use to obtain a simpler structure.
For a list of rotations, see |
... |
Additional arguments to pass on to |
Details
Simulation studies have demonstrated that a node's strength centrality is roughly equivalent to factor loadings (Christensen & Golino, 2021; Hallquist, Wright, & Molenaar, 2019). Hallquist and colleagues (2019) found that node strength represented a combination of dominant and cross-factor loadings. This function computes each node's strength within each specified dimension, providing a rough equivalent to factor loadings (including cross-loadings; Christensen & Golino, 2021).
Value
Returns a list containing:
unstd |
A matrix of the unstandardized within- and between-community strength values for each node |
std |
A matrix of the standardized within- and between-community strength values for each node |
rotated |
|
Author(s)
Alexander P. Christensen <alexpaulchristensen@gmail.com> and Hudson Golino <hfg9s at virginia.edu>
References
Original implementation and simulation
Christensen, A. P., & Golino, H. (2021).
On the equivalency of factor and network loadings.
Behavior Research Methods, 53, 1563-1580.
Demonstration of node strength similarity to CFA loadings
Hallquist, M., Wright, A. C. G., & Molenaar, P. C. M. (2019).
Problems with centrality measures in psychopathology symptom networks: Why network psychometrics cannot escape psychometric theory.
Multivariate Behavioral Research, 1-25.
Examples
# Load data
wmt <- wmt2[,7:24]
# Estimate EGA
ega.wmt <- EGA(
data = wmt,
plot.EGA = FALSE # No plot for CRAN checks
)
# Network loadings
net.loads(ega.wmt)