<?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 corr in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124706#M34248</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do a series of PROC CORRs with chunks of the variables, output the results and then combine the results to further process them.&amp;nbsp; It is just 16 PROC CORR executions.&amp;nbsp; Che the documentation for how to code it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I question the wisdom of that many correlations; some of the results will be just spurious noise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doc Muhlbaier&lt;/P&gt;&lt;P&gt;Duke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2012 19:57:34 GMT</pubDate>
    <dc:creator>Doc_Duke</dc:creator>
    <dc:date>2012-09-18T19:57:34Z</dc:date>
    <item>
      <title>Proc corr</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124705#M34247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to compute correlation of the aproximately 11000 variables. But Proc Corr has restriction of 3000 variables. Could anybody suggest me, if there is any alternative way to accomplish this task. Could you also provide me the possible SAS code(s).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shyam &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 19:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124705#M34247</guid>
      <dc:creator>shyam</dc:creator>
      <dc:date>2012-09-18T19:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc corr</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124706#M34248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do a series of PROC CORRs with chunks of the variables, output the results and then combine the results to further process them.&amp;nbsp; It is just 16 PROC CORR executions.&amp;nbsp; Che the documentation for how to code it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I question the wisdom of that many correlations; some of the results will be just spurious noise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doc Muhlbaier&lt;/P&gt;&lt;P&gt;Duke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 19:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124706#M34248</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2012-09-18T19:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc corr</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124707#M34249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a macro to walk throught every single variable for all of them , then append them all together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data x;
 array _a{*} a1-a11000;
 do j=1 to 10 ;
 do i=1 to dim(_a);
&amp;nbsp; _a{i}=ranuni(0);
 end;
 output; 
end;drop i j;
run;
proc corr data=x outp=want1 noprint;
 var _all_;
 with a1;
run;

proc corr data=x outp=want2 noprint ;
 var _all_;
 with a2;
run;

 
.............. and so on 

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 03:19:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124707#M34249</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-09-19T03:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc corr</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124708#M34250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Doc@Duke said&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;I question the wisdom of that many correlations; some of the results will be just spurious noise.&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;This is wise advice. What are you going to do with 11000*10999/2 &amp;gt; 60 million correlations? What is the real problem you are trying to solve with this data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 12:39:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124708#M34250</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2012-09-19T12:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc corr</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124709#M34251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ksharp for your coding help. Comments form &lt;A href="mailto:Doc@Duke"&gt;Doc@Duke&lt;/A&gt; and PaigeMiller appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2012 16:23:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-corr/m-p/124709#M34251</guid>
      <dc:creator>shyam</dc:creator>
      <dc:date>2012-12-27T16:23:37Z</dc:date>
    </item>
  </channel>
</rss>

