<?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 Re: Proc factor: principle component scores in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/494509#M25642</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Again, per this documentation, it seems that the factor1 generated automatically by proc factor is not equivalent to principle [sic] component scores (33.1.8)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That link comes to the conclusion that is the opposite of your conclusion. It says: "&lt;SPAN&gt;As you can see, these standardized scoring coefficients are essentially the same as those obtained from PROC PRINCOMP, as shown in&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/statug_factor_sect028.htm#statug.factor.facex1j" target="_blank"&gt;Output 33.1.9&lt;/A&gt;&lt;SPAN&gt;. This example shows that principal component analyses by PROC FACTOR and PROC PRINCOMP are indeed equivalent."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It also says: "If a principal component analysis of the data is all you need in a particular application, there is no reason to use PROC FACTOR instead of PROC PRINCOMP."&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Sep 2018 15:11:18 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2018-09-11T15:11:18Z</dc:date>
    <item>
      <title>Proc factor: principle component scores</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/490450#M25483</link>
      <description>&lt;P&gt;Hi! I am using proc factor to run a principle components analysis (to note: I went with this procedure over princomp bc I wanted more of the output...if i need to switch to princomp then I will!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my question: based on the SAS documentation below, I am confused whether proc factor produces principle component scores (discussion accompanying 33.1.8) or if one has to use proc princomp to have the principle component scores (discussion accompanying 33.1.19).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_factor_sect028.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_factor_sect028.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, per this documentation, it seems that the factor1 generated automatically by proc factor is not equivalent to principle component scores (33.1.8) but I'm confused as this seems to be the correct equation.&amp;nbsp; Caution against using factor1 if one is wanting to use the components in a subsequent regression model? or is it correct?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you SO much for the support!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 13:30:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/490450#M25483</guid>
      <dc:creator>Eileen18</dc:creator>
      <dc:date>2018-08-28T13:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc factor: principle component scores</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/494496#M25641</link>
      <description>&lt;P&gt;When in doubt, ask the procedures themselves.&amp;nbsp; These two analyses produce the same scores.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc factor data=sashelp.iris out=f nfactors=4 prefix=Prin; run;

proc princomp data=sashelp.iris out=p n=4 std; run;

proc compare error note briefsummary criterion=1e-10
   data=f(keep=prin: label='') compare=p(keep=prin: label='') method=relative(1);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 14:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/494496#M25641</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-09-11T14:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Proc factor: principle component scores</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/494509#M25642</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Again, per this documentation, it seems that the factor1 generated automatically by proc factor is not equivalent to principle [sic] component scores (33.1.8)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That link comes to the conclusion that is the opposite of your conclusion. It says: "&lt;SPAN&gt;As you can see, these standardized scoring coefficients are essentially the same as those obtained from PROC PRINCOMP, as shown in&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/statug_factor_sect028.htm#statug.factor.facex1j" target="_blank"&gt;Output 33.1.9&lt;/A&gt;&lt;SPAN&gt;. This example shows that principal component analyses by PROC FACTOR and PROC PRINCOMP are indeed equivalent."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It also says: "If a principal component analysis of the data is all you need in a particular application, there is no reason to use PROC FACTOR instead of PROC PRINCOMP."&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 15:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-factor-principle-component-scores/m-p/494509#M25642</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-09-11T15:11:18Z</dc:date>
    </item>
  </channel>
</rss>

