<?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 is suppressing some of my scatterplots in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961908#M374959</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/74483"&gt;@hein68&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add the NWITH=ALL option:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;PLOTS=(scatter&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;(nwith=all)&lt;/STRONG&gt;&lt;/FONT&gt; matrix&lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;(nwith=all)&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Moreover, if the total number of data points in the scatter plot matrix exceeds 5000, you will need to add the MAXPOINTS=NONE option:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;PLOTS&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;(maxpoints=none)&lt;/STRONG&gt;&lt;/FONT&gt;=(scatter(nwith=all) matrix(nwith=all))&lt;/FONT&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 14 Mar 2025 16:44:07 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2025-03-14T16:44:07Z</dc:date>
    <item>
      <title>proc corr is suppressing some of my scatterplots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961903#M374956</link>
      <description>&lt;P&gt;Hello.&amp;nbsp; I'm using proc corr and I want it to create 16 scatterplots.&amp;nbsp; I know there is a limit to the number of scatterplots it will create, but I was also told that there is an option I can add to get all of the scatterplots.&amp;nbsp; Can you help me?&amp;nbsp; Here is my code:&lt;/P&gt;
&lt;PRE&gt;ODS GRAPHICS ON;
PROC CORR DATA=data
	PLOTS=(SCATTER MATRIX)
	PEARSON
	SPEARMAN
	VARDEF=DF
	;
	VAR bfpwv_b cfpwv_b;
	WITH socstress_b hwss_ism hwss_ssm hwss_rsm hwss_fsm hwss_psm hwss_esm fossc_b;
RUN;
ODS GRAPHICS OFF;
&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Mar 2025 15:06:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961903#M374956</guid>
      <dc:creator>hein68</dc:creator>
      <dc:date>2025-03-14T15:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc corr is suppressing some of my scatterplots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961908#M374959</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/74483"&gt;@hein68&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add the NWITH=ALL option:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;PLOTS=(scatter&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;(nwith=all)&lt;/STRONG&gt;&lt;/FONT&gt; matrix&lt;STRONG&gt;&lt;FONT color="#3366FF"&gt;(nwith=all)&lt;/FONT&gt;&lt;/STRONG&gt;)&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Moreover, if the total number of data points in the scatter plot matrix exceeds 5000, you will need to add the MAXPOINTS=NONE option:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;PLOTS&lt;FONT color="#3366FF"&gt;&lt;STRONG&gt;(maxpoints=none)&lt;/STRONG&gt;&lt;/FONT&gt;=(scatter(nwith=all) matrix(nwith=all))&lt;/FONT&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Mar 2025 16:44:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961908#M374959</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-03-14T16:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc corr is suppressing some of my scatterplots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961914#M374963</link>
      <description>&lt;P&gt;If the plots are all you are interested in you might also consider Proc SGSCATTER. The Compare statement allows similar list of x and y variables for the plots.&lt;/P&gt;
&lt;P&gt;Or go whole hog and display regressions with the plots...&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 17:23:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961914#M374963</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2025-03-14T17:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: proc corr is suppressing some of my scatterplots</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961921#M374967</link>
      <description>&lt;P&gt;That helped, thanks!!!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 18:34:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-corr-is-suppressing-some-of-my-scatterplots/m-p/961921#M374967</guid>
      <dc:creator>hein68</dc:creator>
      <dc:date>2025-03-14T18:34:13Z</dc:date>
    </item>
  </channel>
</rss>

