Exploratory factor analysis on multiple data imputations
Source:R/EFAtools-superseded.R
EFA_POOLED.RdEFA_POOLED() has been superseded by efa_mi(), which is the recommended
interface going forward. It remains available and unchanged so existing code
keeps working.
Arguments
- data_list
A list of length \(m\), where \(m\) is the number of imputations. Each list element is a data frame or matrix of raw data, or a correlation matrix. See argument
xinefa_fit().- p
Numeric in \((0, 1)\). One minus the confidence level used for pooled Wald-type bootstrap/MI confidence intervals when bootstrap replicates are available. For example,
p = .05gives 95% intervals.- target_method
Character. How rotated solutions are aligned across imputations before pooling:
"first_target"(the default) aligns every imputation to the first imputation's rotated solution, while"consensus"refines a centroid target by Generalized Procrustes Analysis (orthogonal rotations only). See Aligning solutions across imputations in Details.- align_unrotated
Character. How unrotated loadings are aligned before pooling:
"signed_tucker_congruence"(the default; sign/permutation via Tucker congruence, anchored on the medoid imputation and returned in the extraction's canonical gauge),"procrustes"(orthogonal Procrustes to the first imputation), or"none". See Aligning solutions across imputations in Details.- fit_pool_method
Character. Currently only
"D2"is implemented for chi-square-type fit. If no chi-square is available, only residual-based fit and descriptive quantities are returned. See Pooling the model chi-square and fit indices in Details.- consensus_args
List of additional arguments controlling the GPA-consensus iteration when
target_method = "consensus". Recognised tuning parameters include the convergence tolerancestolandloss_tol, the iteration boundsmin_iterandmax_iter, the target-update dampingalpha, and the multi-start controlsmulti_startandstarts.- procrustes_args
List of additional arguments passed to
efa_procrustes()for fixed-target alignment.- rmsea_ci_level
Numeric. Confidence level for the RMSEA CI.
- rmsr_upper
Logical. If
TRUE, compute RMSR from the unique off-diagonal residual correlations. IfFALSE, use the full off-diagonal matrix.- ...
Additional arguments passed to
efa_fit()(e.g.estimator,rotation,se,n_factors,N). These select the estimator, rotation, standard-error method, and fit indices used for every imputation; seeefa_fit()for the available options, their properties, and which combinations are valid.
Value
The value of efa_mi(), normally a list of class
c("efa_mi", "EFA_POOLED", "efa", "EFA"); see there for the components.