BookmarkSubscribeRSS Feed
Chhatoq
Calcite | Level 5

Hello everyone, 

 

I have a question regarding the weights used to calculate the factor scores in the FACTOR procedure. Since this procedure is calculating the optimal weights for each component, do I need to reverse a variable whose sign is negative in the rotated factor pattern table or do the optimal weights take care of that? 

 

For example, in my data, component six is loaded with three variables as shown below. Item 3 has a negative sign, whereas Item 1 and 2 have positive signs. Does this mean I have to recode item 3 before calculating the factor scores? I know this is required when  calculating factor-based scores, but I am not sure if that is the case for factor scores.  The SAS procedure code I am using is below too. 

 

Thank you so much for your assistance. 

 

Rotated factor pattern table

 Component 5  Component 6 
   
Item10.07 0.85*
Item20.1 0.86*
Item3-0.12 -0.75*

 

I used the following procedure to store the scores in a table called DATA_v2 :

 

proc factor data=WORK.DATA_v1
simple
method=prin
priors=one
nfact=6
plots=scree
rotate=varimax
round
flag=.40
out=DATA_v2;
var item1  item2 item3 item4 item5 item6 ;
run;

1 REPLY 1
PaigeMiller
Diamond | Level 26

@Chhatoq wrote:

Hello everyone, 

 

I have a question regarding the weights used to calculate the factor scores in the FACTOR procedure. Since this procedure is calculating the optimal weights for each component, do I need to reverse a variable whose sign is negative in the rotated factor pattern table



No

 

It means that in component 6, the third variable moves in the opposite direction of the other two. It means that in component 6, as the first and second variables increase, the third variable decreases.

--
Paige Miller

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1258 views
  • 2 likes
  • 2 in conversation