R로 배우는 요인분석
Jennifer Brussow
Psychometrician
절대적 적합도 통계량은 고유한 의미와 권장 기준값을 가집니다.
상대적 적합도 통계량은 모델 비교 시에만 의미가 있습니다.
일반적으로 사용되는 기준값:
# Run the EFA with six factors (as indicated by your scree plot) EFA_model <- fa(bfi_EFA, nfactors = 6)# View results from the model object EFA_model
The total number of observations was 1400 with Likelihood Chi Square = 618.43 with prob < 1.2e-53Tucker Lewis Index of factoring reliability = 0.916 RMSEA index = 0.045 and the 90 % confidence intervals are 0.041 0.048BIC = -576.87
# Run each theorized EFA on your dataset
bfi_theory <- fa(bfi_EFA, nfactors = 5)
bfi_eigen <- fa(bfi_EFA, nfactors = 6)
# Compare the BIC values bfi_theory$BIC bfi_eigen$BICbfi_theory$BIC bfi_eigen$BIC
-381.5326
-576.8658
R로 배우는 요인분석