|
3.1) Rotation
Rotation is used to improve interpretability and utility.
Orthogonal rotation v Oblique rotation:3
- Orthogonal rotation - keeps factors uncorrelated while increasing the meaning of the factors
- Varimax method - spreads the variance from first (largest) factor to other smaller factors; commonly used
- Quartimax method - opposite of varimax; not used often
- Equamax method - hybrid; not used often
- Direct Oblimin
- Oblique rotation - allows the factors to correlate leading to a conceptually clearer picture, but making it difficult to explain
- Promax method (used here)
- Most recommended
- First, solution is rotated maximally with an orthogonal rotation
- Then, it is rotated by oblique rotation
- Orthogonal loadings are raised to powers in order to drive down small loadings
- Simple structure is reached
- Easy and quick method
STATA Example:4
. rotate, promax(3.0)
(promax rotation)
Rotated Factor Loadings
Variable | 1 2 3 4 Uniqueness LOADING
-------------+------------------------------------------------------ RANK
rrtherm | 0.35220 -0.45493 -0.22869 -0.08927 0.47332 12
gayther2 | 0.47267 0.03895 0.28206 0.03723 0.57587 11
schlpray | 0.60145 -0.03276 -0.12727 0.06871 0.65833 9
relipoli | -0.14698 -0.92299 0.08464 0.04728 0.24303 1
relidivi | -0.02670 -0.88084 0.06523 0.04814 0.26397 2
bible | 0.32669 0.00182 -0.10869 -0.52665 0.49348 10
abortion | 0.21779 -0.20869 0.05076 -0.36013 0.61285 13
adjmoral | -0.08198 -0.04140 0.80104 -0.10148 0.34123 5
tradfami | 0.79735 0.07873 -0.04639 0.06473 0.44421 6
tolmoral | 0.20651 -0.08625 0.72051 0.04116 0.38490 7
lifestyl | 0.69668 0.11100 0.21698 0.02228 0.47731 8
relguid | -0.05968 0.06701 0.02265 -0.82168 0.39178 4
biblread | -0.12333 0.03256 0.08085 -0.85363 0.33660 3
Then, rank the loadings manually by going through each Variable and seeing to which Factor that variable has the highest loading (shown in the right-most column)
3.2) Retaining 10 of the 13 highest loadings
Choose top 10 from above and do the factor command again.
. factor schlpray relipoli relidivi bible adjmoral tradfami tolmoral lifestyl relguid biblread, pcf
(obs=818)
(principal component factors; 4 factors retained)
Factor Eigenvalue Difference Proportion Cumulative
------------------------------------------------------------------
1 2.77313 1.42808 0.2773 0.2773
2 1.34505 0.21001 0.1345 0.4118
3 1.13504 0.06176 0.1135 0.5253
4 1.07328 0.21546 0.1073 0.6327
5 0.85782 0.13578 0.0858 0.7184
6 0.72204 0.09339 0.0722 0.7906
7 0.62865 0.08095 0.0629 0.8535
8 0.54770 0.03238 0.0548 0.9083
9 0.51532 0.11334 0.0515 0.9598
10 0.40197 . 0.0402 1.0000
3.3) Un-rotated Factor Matrix Cut
Now rotate again.
. rotate, promax(3.0)
(promax rotation)
Rotated Factor Loadings
Variable | 1 2 3 4 Uniqueness
-------------+------------------------------------------------------
schlpray | 0.10000 -0.06717 -0.14650 -0.51329 0.67726
relipoli | -0.00130 -0.90470 0.01729 0.06921 0.20176
relidivi | -0.00401 -0.87883 0.00045 -0.04381 0.21115
bible | 0.65210 -0.01686 -0.10814 -0.18663 0.46866
adjmoral | 0.04488 0.00862 0.81824 -0.00959 0.31408
tradfami | -0.06184 0.01955 -0.03455 -0.85194 0.31964
tolmoral | 0.01322 -0.03281 0.76272 -0.08360 0.37909
lifestyl | -0.04870 0.02847 0.21189 -0.76514 0.35407
relguid | 0.74278 0.02104 0.04740 0.00595 0.44602
biblread | 0.85764 -0.00304 0.07817 0.14983 0.30174
Choosing variables with highest values for each factor:
- Factor 1:
- Factor 2:
- Factor 3:
- Factor 4:
- schlpray
- tradfam
- lifestyl
|
Comments (0)
You don't have permission to comment on this page.