<?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: Query on Proc corr in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649746#M31183</link>
    <description>Thank you very much, with this code now i can see the output with all plots.&lt;BR /&gt;Could you please help for my other query that i have posted in this community regarding pmenu procedure? i associated my menu created through fsedit but the menu is not appearing so can i try another pmenu linking same dataset and procs using windows application?&lt;BR /&gt;</description>
    <pubDate>Fri, 22 May 2020 00:18:48 GMT</pubDate>
    <dc:creator>Amali6</dc:creator>
    <dc:date>2020-05-22T00:18:48Z</dc:date>
    <item>
      <title>Query on Proc corr</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649733#M31179</link>
      <description>&lt;P&gt;Hello experts,&lt;/P&gt;
&lt;P&gt;I am trying proc corr between two variables in my dataset, when i run the code i got this warning message in log.&lt;/P&gt;
&lt;PRE&gt;WARNING: The scatter plot matrix with more than 5000 points has been suppressed. Use the PLOTS(MAXPOINTS= ) option in the PROC
         CORR statement to change or override the cutoff&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;Again I have retried with this code&amp;nbsp; plots(MAXPOINTS=NONE);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;i got a NOTE in log saying that&amp;nbsp; &amp;nbsp; NOTE: The PLOTS option is ignored unless you also specify suboptions&lt;BR /&gt;Could you explain what does the log mean? and how to get the output in plots for my variables please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 22:49:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649733#M31179</guid>
      <dc:creator>Amali6</dc:creator>
      <dc:date>2020-05-21T22:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Query on Proc corr</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649740#M31180</link>
      <description>&lt;P&gt;First thing, it is always a good idea to show the code you have submitted, or was generated. Best is to copy from the Log the entire procedure along with any notes, warning or errors . Copy the text and paste into a code box opened on the forum with the &amp;lt;/&amp;gt; icon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to tell what kind of plot such as Plots=matrix (options) or Plots=scatter(options)&lt;/P&gt;
&lt;P&gt;The max points would go in the Options section&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2020 23:13:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649740#M31180</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-05-21T23:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Query on Proc corr</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649744#M31181</link>
      <description>Thanks for the reply. I have tried the following code.&lt;BR /&gt;&lt;BR /&gt;proc corr data=hotel.Hotel_bookings plots(MAXPOINTS=NONE);&lt;BR /&gt;   var booking_changes adr;&lt;BR /&gt;   run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The PLOTS option is ignored unless you also specify suboptions&lt;BR /&gt;&lt;BR /&gt;Could you please help on how to get the plots?&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 May 2020 23:28:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649744#M31181</guid>
      <dc:creator>Amali6</dc:creator>
      <dc:date>2020-05-21T23:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Query on Proc corr</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649745#M31182</link>
      <description>&lt;P&gt;Thanks for providing the example code, it makes diagnosing and describing what's going on much easier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the code you provided no&amp;nbsp;&lt;EM&gt;plot-request&lt;/EM&gt; sub-option specified, and the note you see in the log indicates that no plots are produced unless a&amp;nbsp;&lt;EM&gt;plot-request&lt;/EM&gt; is specified. The description of the&amp;nbsp;&lt;A href="https://go.documentation.sas.com/?docsetId=procstat&amp;amp;docsetTarget=procstat_corr_syntax01.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#procstat.corr.plotsopt" target="_self"&gt;PLOTS=&lt;/A&gt;&amp;nbsp;option in the PROC CORR documentation includes a description of the possible&amp;nbsp;&lt;EM&gt;plot-request&lt;/EM&gt; options you can make. The example code below should produce all of the appropriate plots:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc corr data=hotel.Hotel_bookings plots(MAXPOINTS=NONE)=all;
var booking_changes adr;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 May 2020 00:02:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649745#M31182</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2020-05-22T00:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Query on Proc corr</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649746#M31183</link>
      <description>Thank you very much, with this code now i can see the output with all plots.&lt;BR /&gt;Could you please help for my other query that i have posted in this community regarding pmenu procedure? i associated my menu created through fsedit but the menu is not appearing so can i try another pmenu linking same dataset and procs using windows application?&lt;BR /&gt;</description>
      <pubDate>Fri, 22 May 2020 00:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Query-on-Proc-corr/m-p/649746#M31183</guid>
      <dc:creator>Amali6</dc:creator>
      <dc:date>2020-05-22T00:18:48Z</dc:date>
    </item>
  </channel>
</rss>

