Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3360446
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:59:36+00:00 2026-05-18T02:59:36+00:00

When performing a factor analysis using factanal the usual result is some loadings table

  • 0

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 matrix / data.frame of factors? For example to use them in regression analysis later on.

EDIT: the purpose of this is to obtain variables for subsequent modeling. I only know of factor scores – but suggestions / pointers to other terminology are welcome 🙂

EDIT2: Joris Meys answer answer is basically what I was asking for. Still though it moves my question towards a direction that might be better suited for statsoverflow, but I will keep it here for now, because the right group of people is the discussing the solution:

What´s the benefit of the regression based scores? The result of the product (ML) is highly correlated with the factors… Honestly I wonder why the difference is that big in my case?

 fa$scores # the correct solution
 fac <- m1 %*% loadings(fa) # the answer on your question
 diag(cor(fac,fa$scores))
 #returns:
Factor1   Factor2   Factor3 
0.8309343 0.8272019 0.8070837 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T02:59:37+00:00Added an answer on May 18, 2026 at 2:59 am

    You asked how to use the loadings for construction of scores. Your solution is, although correct, not doing that. It’s using a regression method (alternatively you can use Bartlett’s method as well), and this uses the restriction that the scores are uncorrelated, centered around 0 and with variance = 1. These are hence not the same factors as one would obtain by using F = ML with F the factor matrix, M the original matrix and L the loading matrix.

    A demonstration with the example from the help files :

    v1 <- c(1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,4,5,6)
    v2 <- c(1,2,1,1,1,1,2,1,2,1,3,4,3,3,3,4,6,5)
    v3 <- c(3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,5,4,6)
    v4 <- c(3,3,4,3,3,1,1,2,1,1,1,1,2,1,1,5,6,4)
    v5 <- c(1,1,1,1,1,3,3,3,3,3,1,1,1,1,1,6,4,5)
    v6 <- c(1,1,1,2,1,3,3,3,4,3,1,1,1,2,1,6,5,4)
    m1 <- cbind(v1,v2,v3,v4,v5,v6)
    
    fa <- factanal(m1, factors=3,scores="regression")
    
    fa$scores # the correct solution
    
    fac <- m1 %*% loadings(fa) # the answer on your question
    

    These are clearly different values.

    Edit : This has to do with the fact that the Thomson regression scores are based on scaled variables, and take the correlation matrix into account. If you would calculate the scores by hand, you’d do :

    > fac2 <- scale(m1) %*% solve(cor(m1)) %*% loadings(fa)
    > all.equal(fa$scores,as.matrix(fac2))
    [1] TRUE
    

    For more information, see this review

    And to show you why it is important : If you calculate the scores the “naive” way, your scores are actually correlated. And that is what you wanted to get rid of in the first place :

    > round(cor(fac),2)
            Factor1 Factor2 Factor3
    Factor1    1.00    0.79    0.81
    Factor2    0.79    1.00    0.82
    Factor3    0.81    0.82    1.00
    
    > round(cor(fac2),2)
            Factor1 Factor2 Factor3
    Factor1       1       0       0
    Factor2       0       1       0
    Factor3       0       0       1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been too lax with performing DB backups on our internal servers. Is there
Our team uses svn to manage our source. When performing a re-factor on a
During performing some performance tuning in my application I have noticed, that hibernate query
When performing string concatentation of an existing string in the intern pool, is a
I am performing two validations on the client side on the samve event. I
I'm performing a bulk insert with an ADO.NET 2.0 SqlBulkCopy object from a C#
I'm performing a UrlRewrite for my main category pages. Converting: www.mysite.com/Category.aspx?id=2 to www.mysite.com/Dogs In
Bearing in mind that I'll be performing calculations on lat / long pairs, what
I'm looking for best practices for performing strict (whitelist) validation/filtering of user-submitted HTML. Main
A similar question was already asked ( Performing a Stress Test on Web Application?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.