How to create factors from factanal?

前端 未结 4 1916
旧巷少年郎
旧巷少年郎 2021-02-03 11:12

When performing a factor analysis using factanal the usual result is some loadings table plus several other information. Is there a direct way to use these loadings to create a

4条回答
  •  我在风中等你
    2021-02-03 11:51

    I haven't checked it manually, but here´s a way do it:

    fa <-  factanal(mydf,3,rotation="varimax",scores="regression")
    fa$scores
    

    HTH someone else. Suggestions, corrections, improvements welcome!

提交回复
热议问题