ComenzarEmpieza gratis

Selecting the best model

Now use your knowledge of finding and interpreting absolute and relative model fit statistics to select the best model for your data. When I introduced this dataset I said that the items were theorized to load onto five factors, but you may have noticed that your scree plot indicated six factors. You might be wondering which you should trust. Not to worry - you can use fit statistics to make am empirical decision about how many factors to use.

First, you'll use the bfi_EFA dataset to run EFAs with each of the hypothesized number of factors. Then, you can look at the BIC, which is a relative fit statistic, to compare models. Remember, the lowest BIC is preferred!

Este ejercicio forma parte del curso

Factor Analysis in R

Ver curso

Instrucciones del ejercicio

  • Run both EFAs on the bfi_EFA dataset - one with five factors according to the theory, and one with six factors according to the eigenvalues.
  • Take a look at the BIC value for each of the models. The BIC is stored in the BIC list element of the results object.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Run each theorized EFA on your dataset
bfi_theory <- ___(___, nfactors = ___)
bfi_eigen <- ___(___, nfactors = ___)

# Compare the BIC values
___
___
Editar y ejecutar código