Gorsuch.Rd
Gorsuch (1997) suggests an alternative to the classic Dwyer (1937) factor extension technique. This data set is taken from that article. Useful for comparing link{fa.extension}
with and without the correct=TRUE option.
data(Gorsuch)
Gorsuc (1997) suggested an alternative model for factor extension. His method is appropriate for the case of repeated variables. This is handled in link{fa.extension}
with correct=FALSE
Richard L. Gorsuch (1997) New Procedure for Extension Analysis in Exploratory Factor Analysis. Educational and Psychological Measurement, 57, 725-740.
Dwyer, Paul S. (1937), The determination of the factor loadings of a given test from the known factor loadings of other tests. Psychometrika, 3, 173-178
data(Gorsuch)
Ro <- Gorsuch[1:6,1:6]
Roe <- Gorsuch[1:6,7:10]
fo <- fa(Ro,2,rotate="none")
fa.extension(Roe,fo,correct=FALSE)
#>
#> Call: fa.extension(Roe = Roe, fo = fo, correct = FALSE)
#> Standardized loadings (pattern matrix) based upon correlation matrix
#> MR1 MR2 h2 u2
#> info2 0.79 0.37 0.76 0.2415
#> tension2 -0.47 0.65 0.65 0.3536
#> v123 0.90 0.45 1.01 -0.0073
#> v564 -0.54 0.85 1.01 -0.0073
#>
#> MR1 MR2
#> SS loadings 1.94 1.48
#> Proportion Var 0.49 0.37
#> Cumulative Var 0.49 0.85
#> Proportion Explained 0.57 0.43
#> Cumulative Proportion 0.57 1.00