<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Factor scores (component scores) weights in PCA in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Factor-scores-component-scores-weights-in-PCA/m-p/429308#M22569</link>
    <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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&amp;nbsp;reverse a variable whose sign is negative in the rotated factor pattern table or do the optimal weights take care of that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, in my data, component six is loaded with three variables as shown below. Item 3 has a negative sign, whereas&amp;nbsp;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&amp;nbsp; calculating factor-based scores, but I am not sure if that is the case for factor scores.&amp;nbsp; The SAS procedure code I am using is below too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your assistance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rotated factor pattern table&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Component 5&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Component 6&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;…&lt;/TD&gt;&lt;TD&gt;…&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Item1&lt;/TD&gt;&lt;TD&gt;0.07&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;0.85&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Item2&lt;/TD&gt;&lt;TD&gt;0.1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;0.86&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Item3&lt;/TD&gt;&lt;TD&gt;-0.12&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;-0.75&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following procedure to store the scores in a table called&amp;nbsp;&lt;SPAN&gt;DATA_v2&lt;/SPAN&gt; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc factor data=&lt;FONT color="#0000FF"&gt;WORK.DATA_v1&lt;/FONT&gt;&lt;BR /&gt;simple&lt;BR /&gt;method=prin&lt;BR /&gt;priors=one&lt;BR /&gt;nfact=6&lt;BR /&gt;plots=scree&lt;BR /&gt;rotate=varimax&lt;BR /&gt;round&lt;BR /&gt;flag=.40&lt;BR /&gt;out=&lt;FONT color="#0000FF"&gt;DATA_v2&lt;/FONT&gt;;&lt;BR /&gt;var&amp;nbsp;item1&amp;nbsp; &lt;SPAN&gt;item2&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;item3&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;item4&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;item5 item6&amp;nbsp;&lt;/SPAN&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jan 2018 23:04:58 GMT</pubDate>
    <dc:creator>Chhatoq</dc:creator>
    <dc:date>2018-01-19T23:04:58Z</dc:date>
    <item>
      <title>Factor scores (component scores) weights in PCA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Factor-scores-component-scores-weights-in-PCA/m-p/429308#M22569</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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&amp;nbsp;reverse a variable whose sign is negative in the rotated factor pattern table or do the optimal weights take care of that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, in my data, component six is loaded with three variables as shown below. Item 3 has a negative sign, whereas&amp;nbsp;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&amp;nbsp; calculating factor-based scores, but I am not sure if that is the case for factor scores.&amp;nbsp; The SAS procedure code I am using is below too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your assistance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rotated factor pattern table&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Component 5&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Component 6&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;…&lt;/TD&gt;&lt;TD&gt;…&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Item1&lt;/TD&gt;&lt;TD&gt;0.07&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;0.85&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Item2&lt;/TD&gt;&lt;TD&gt;0.1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;0.86&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Item3&lt;/TD&gt;&lt;TD&gt;-0.12&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;-0.75&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;*&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following procedure to store the scores in a table called&amp;nbsp;&lt;SPAN&gt;DATA_v2&lt;/SPAN&gt; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc factor data=&lt;FONT color="#0000FF"&gt;WORK.DATA_v1&lt;/FONT&gt;&lt;BR /&gt;simple&lt;BR /&gt;method=prin&lt;BR /&gt;priors=one&lt;BR /&gt;nfact=6&lt;BR /&gt;plots=scree&lt;BR /&gt;rotate=varimax&lt;BR /&gt;round&lt;BR /&gt;flag=.40&lt;BR /&gt;out=&lt;FONT color="#0000FF"&gt;DATA_v2&lt;/FONT&gt;;&lt;BR /&gt;var&amp;nbsp;item1&amp;nbsp; &lt;SPAN&gt;item2&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;item3&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;item4&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;item5 item6&amp;nbsp;&lt;/SPAN&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 23:04:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Factor-scores-component-scores-weights-in-PCA/m-p/429308#M22569</guid>
      <dc:creator>Chhatoq</dc:creator>
      <dc:date>2018-01-19T23:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Factor scores (component scores) weights in PCA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Factor-scores-component-scores-weights-in-PCA/m-p/429370#M22570</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/148763"&gt;@Chhatoq&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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&amp;nbsp;reverse a variable whose sign is negative in the rotated factor pattern table&lt;/P&gt;
&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 12:34:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Factor-scores-component-scores-weights-in-PCA/m-p/429370#M22570</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-01-20T12:34:02Z</dc:date>
    </item>
  </channel>
</rss>

