net.loads | R Documentation |
Computes the between- and within-community
strength
of each variable for each community
net.loads(
A,
wc,
loading.method = c("original", "revised"),
scaling = 2,
rotation = NULL,
...
)
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 |
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).
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 |
|
Alexander P. Christensen <alexpaulchristensen@gmail.com> and Hudson Golino <hfg9s at virginia.edu>
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.
Revised network loadings
Christensen, A. P., Golino, H., Abad, F. J., & Garrido, L. E. (2024).
Revised network loadings.
PsyArXiv.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.