| efa_group | R Documentation |
Fit an exploratory factor analysis in each of several groups at a common
number of factors and bring the per-group solutions into one shared
orientation so their loadings can be compared. Each group is fitted with
efa_fit(); the solutions are then aligned either to a symmetric consensus target
or to a chosen reference group (see Alignment).
efa_group(
x,
groups = NULL,
n_factors,
N = NA,
reference_group = NULL,
b_boot = 0L,
ci = 0.95,
seed = NULL,
delta = 0.1,
invariance = FALSE,
se = NULL,
...
)
x |
A data frame or matrix of raw data (with |
groups |
A vector with one value per row of |
n_factors |
numeric. The common number of factors extracted in every group. |
N |
numeric. The number of observations per group, used only for
correlation-matrix input: either a single value applied to all groups or one
value per group. Ignored for raw data, where |
reference_group |
The group to align the others to (a group name or an
integer index). If |
b_boot |
numeric. The number of non-parametric bootstrap replicates used to
form percentile confidence intervals for the between-group Tucker congruences.
|
ci |
numeric. The confidence level for the bootstrap congruence intervals, a
single value in |
seed |
numeric or |
delta |
numeric. The salience threshold for the per-item loading-difference flag
table: an item's loading on a factor is flagged for a group pair when the groups'
aligned loadings differ by at least The geomin rotations take a criterion parameter of the same name. A |
invariance |
logical. Whether to add an approximate-invariance verdict per factor and
group pair from the Lorenzo-Seva and ten Berge (2006) congruence bands (see Value).
Default is |
se |
Not used. |
... |
Additional arguments passed to A rotation-engine extra that shares a name with an |
Groups can be supplied in two ways: raw data together with a grouping vector
(x a data frame or matrix, groups one value per row), or a named list of
per-group data sets in x (with groups left NULL). The list may hold raw
data frames or correlation matrices (supply N), but not a mix of the two.
All groups must contain the same items in the same order; a different item set
or order is an error rather than being silently reordered.
Every group is fitted at the same n_factors. Extra arguments in ... (for example
estimator, rotation, cor_method, or an estimate_control() / rotate_control()
carrying the tuning knobs) are forwarded unchanged to each efa_fit() call, so the
estimator and rotation are common to all groups.
The requested number of factors must be small enough, relative to the number of items,
for the n_factors-factor model to be identified for the shared item set. Unlike a single
efa_fit() fit – which only warns on an under-identified model – a multigroup fit aborts
when this fails, because a shared alignment target across an under-identified group is not
interpretable.
A factor solution is identified only up to a rotation of its factors, so the per-group solutions must be brought into a common orientation before their loadings can be compared. Two strategies are available and are chosen automatically:
Consensus (the default for orthogonal rotations and for unrotated
solutions): a symmetric target is built across all groups using Generalized Procrustes
Analysis (Gower, 1975), and every group's loadings are rotated to it. Because this
target's own orientation is arbitrary, it is then rotated once more into a fixed
convention (called the gauge), and the same transform is applied to every group. The
gauge uses the same simple-structure criterion as the requested rotation, applied to the
target itself, so the shared loadings are in the same kind of frame as the per-group
solutions they summarise. Where no rotation criterion identifies a unique frame (an
unrotated solution, or a two-factor bifactorT request), the target's principal-axes
orientation is used instead. Either way the columns are ordered by decreasing sum of
squares and signed by their column sums, and the shared orientation – and hence every
reported congruence, difference, and flag – does not depend on the order the groups are
supplied, to well beyond the precision loadings are reported at.
Reference: every group's loadings are aligned by Procrustes rotation to
one reference group's loadings, which are kept fixed. This path is used when
reference_group is given, and is used automatically for oblique rotations
because the consensus iteration is not defined for oblique transforms with
more than one factor. When an oblique rotation triggers the reference path
without an explicit reference_group, the first group is used and a message
reports this; the requested rotation is never silently changed.
In both cases the returned per-group loadings share the column order and sign
of the returned target.
Because the per-group loadings share one orientation, they can be compared cell by cell.
efa_group() reports a per-pair summary of their differences (diffs) and a per-item,
per-factor flag table (flags) marking cells whose absolute difference reaches delta; a
bootstrap (b_boot > 0) additionally reports, for every cell, whether its difference's
confidence interval excludes zero. With invariance = TRUE, each factor and group pair also gets an
approximate-invariance verdict based on the matched Tucker congruence (see Value for the
similarity bands and how a bootstrap is used).
An object of class efa_group, a list containing:
loadings |
A named list of the aligned per-group loading matrices. Their
columns match the columns of |
target |
The alignment target: the symmetric consensus target, or the reference group's own loadings. |
Phi |
A named list of the aligned per-group factor intercorrelations for
an oblique rotation; |
congruence |
Tucker congruence between the aligned group loadings, a list
with: |
diffs |
A data frame with one row per group pair summarising the differences
between their aligned loadings: the mean, median, minimum, and maximum absolute
difference, the root-mean-square difference ( |
flags |
A data frame with one row per group pair, item, and factor giving the signed
loading difference ( |
invariance |
When |
efa |
The named list of per-group |
alignment |
The alignment result: the consensus object (see
|
settings |
A list of the settings used, including the per-group |
Efron, B., & Tibshirani, R. J. (1993). An Introduction to the Bootstrap. Chapman & Hall.
Gower, J. C. (1975). Generalized Procrustes analysis. Psychometrika, 40, 33-51. doi: 10.1007/BF02291478
Lorenzo-Seva, U., and ten Berge, J. M. F. (2006). Tucker's congruence coefficient as a meaningful index of factor similarity. Methodology, 2, 57-64. doi: 10.1027/1614-2241.2.2.57
Other factor analysis:
efa_average(),
efa_fit(),
efa_mi(),
plot.efa_group(),
print.efa_group()
# Raw data split by a grouping vector (unrotated, consensus alignment)
g <- rep(c("g1", "g2"), length.out = nrow(GRiPS_raw))
mg <- efa_group(GRiPS_raw, groups = g, n_factors = 1)
mg$loadings
# Per-pair difference summary and the per-item salience-flag table
mg$diffs
mg$flags
# Percentile bootstrap confidence intervals for the between-group congruences, with an
# approximate-invariance verdict read conservatively off the congruence CI lower bound
mg_ci <- efa_group(GRiPS_raw, groups = g, n_factors = 1, b_boot = 100, seed = 42,
invariance = TRUE)
mg_ci$congruence$matched_ci
mg_ci$invariance
# A named list of correlation matrices sharing the same items, common
# three-factor model, orthogonal rotation -> symmetric consensus target
bands <- list(age_6_8 = WJIV_ages_6_8$cormat, age_14_19 = WJIV_ages_14_19$cormat)
Ns <- c(WJIV_ages_6_8$N, WJIV_ages_14_19$N)
efa_group(bands, n_factors = 3, N = Ns, rotation = "varimax")
# An oblique rotation aligns to a reference group (reported via a message)
efa_group(bands, n_factors = 3, N = Ns, rotation = "promax")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.