<?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 Is there a way to run multiple proc score? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408845#M21315</link>
    <description>&lt;P&gt;I have two factors for which I would like to create factor scores, but when I load them into the same PROC SCORE my factors get all messed up. This works great:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc factor data=dissert score outstat=factout nfactors=1
		method=prin rotate=varimax score;
	var open likelyafs ;
run;

proc score data=dissert score=factout out=fscore
	(rename= (factor1=bankincl ));
	var open likelyafs ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, when I add to it like this:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc factor data=dissert score outstat=factout nfactors=2
		method=prin rotate=varimax score;
	var open likelyafs moninc highested pared ;
run;

proc score data=dissert score=factout out=fscore
	(rename= (factor1=bankincl factor2=SESFS));
	var open likelyafs moninc highested pared;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My factor loadings get all messed up.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When run separately, open and likelyafs load beautifully together (.7-.8) and when I load moninc, highested, and pared together they load as expected also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BUT, when I try and the score procedures separately, they won't run. I keep getting errors--Variable BANKINCL not found and Variable SESFS not found.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to do this or am I SOL? Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Mon, 30 Oct 2017 18:56:55 GMT</pubDate>
    <dc:creator>ksmielitz</dc:creator>
    <dc:date>2017-10-30T18:56:55Z</dc:date>
    <item>
      <title>Is there a way to run multiple proc score?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408845#M21315</link>
      <description>&lt;P&gt;I have two factors for which I would like to create factor scores, but when I load them into the same PROC SCORE my factors get all messed up. This works great:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc factor data=dissert score outstat=factout nfactors=1
		method=prin rotate=varimax score;
	var open likelyafs ;
run;

proc score data=dissert score=factout out=fscore
	(rename= (factor1=bankincl ));
	var open likelyafs ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, when I add to it like this:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc factor data=dissert score outstat=factout nfactors=2
		method=prin rotate=varimax score;
	var open likelyafs moninc highested pared ;
run;

proc score data=dissert score=factout out=fscore
	(rename= (factor1=bankincl factor2=SESFS));
	var open likelyafs moninc highested pared;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My factor loadings get all messed up.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When run separately, open and likelyafs load beautifully together (.7-.8) and when I load moninc, highested, and pared together they load as expected also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BUT, when I try and the score procedures separately, they won't run. I keep getting errors--Variable BANKINCL not found and Variable SESFS not found.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to do this or am I SOL? Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 18:56:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408845#M21315</guid>
      <dc:creator>ksmielitz</dc:creator>
      <dc:date>2017-10-30T18:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to run multiple proc score?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408856#M21317</link>
      <description>&lt;P&gt;It's not clear what's going on here at all. Can you use SASHELP.CARS and replicate your issue and clearly identify where you're having problems?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408856#M21317</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T19:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to run multiple proc score?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408862#M21318</link>
      <description>&lt;P&gt;I'm sorry,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;...what is SASHELP.CARS? I can't find it.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:13:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408862#M21318</guid>
      <dc:creator>ksmielitz</dc:creator>
      <dc:date>2017-10-30T19:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to run multiple proc score?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408867#M21320</link>
      <description>&lt;P&gt;It's a SAS data set in the library SASHELP with the name CARS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So rather than use your data, which we can't see or have, anyone can use the data sets in SASHELP to create&amp;nbsp;reproducible code that anyone can run and test.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408867#M21320</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-30T19:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to run multiple proc score?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408871#M21321</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;Thanks for the explanation! I'll see if I can check it out and put that to work to get some additional help!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2017 19:21:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Is-there-a-way-to-run-multiple-proc-score/m-p/408871#M21321</guid>
      <dc:creator>ksmielitz</dc:creator>
      <dc:date>2017-10-30T19:21:51Z</dc:date>
    </item>
  </channel>
</rss>

