<?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: Maximum Number of Observations Calibration Plot Fix in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878393#M82751</link>
    <description>&lt;P&gt;Hey Ballard,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help - that did it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It did run for an hour and a half but lacked memory due to the size. May need to consult with colleuages r.e a more powerful computer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 31 May 2023 11:00:27 GMT</pubDate>
    <dc:creator>CraigSmith</dc:creator>
    <dc:date>2023-05-31T11:00:27Z</dc:date>
    <item>
      <title>Maximum Number of Observations Calibration Plot Fix</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878281#M82749</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am attempting to validate my logistic regression model in&amp;nbsp; a large dataset.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, it seems as if the max number of observations allowed for a calibration plot has been reached. Does anyone know how I could fix my code below. Have put error log below this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Craig&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CraigSmith_0-1685467571088.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/84503i8DBA1F5DAC421FA5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CraigSmith_0-1685467571088.png" alt="CraigSmith_0-1685467571088.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;PROC LOGISTIC DATA=BIO3 PLOTS = ROC PLOTS(MAXPOINTS=NONE)&lt;BR /&gt;plots=calibration(CLM ShowObs);&lt;BR /&gt;MODEL HNC(EVENT='HNC') = PROB / ROCCI GOF OUTROC = ROC;&lt;BR /&gt;RUN;&lt;/P&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;
&lt;P&gt;NOTE: PROC LOGISTIC is modeling the probability that HNC='HNC'.&lt;BR /&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The number of observations of the LOESS plot (89450) exceeds the limit of 5000.&lt;BR /&gt;Specify the LOESSMAXOBS option of the ODS GRAPHICS statement to override the limit.&lt;BR /&gt;NOTE: The number of observations of the LOESS plot (89450) exceeds the limit of 5000.&lt;BR /&gt;Specify the LOESSMAXOBS option of the ODS GRAPHICS statement to override the limit.&lt;BR /&gt;NOTE: There were 89450 observations read from the data set WORK.BIO3.&lt;BR /&gt;NOTE: The data set WORK.ROC has 29701 observations and 8 variables.&lt;BR /&gt;NOTE: PROCEDURE LOGISTIC used (Total process time):&lt;BR /&gt;real time 10.92 seconds&lt;BR /&gt;cpu time 2.39 seconds&lt;/P&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>Tue, 30 May 2023 17:28:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878281#M82749</guid>
      <dc:creator>CraigSmith</dc:creator>
      <dc:date>2023-05-30T17:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Number of Observations Calibration Plot Fix</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878331#M82750</link>
      <description>&lt;P&gt;SAS pretty much told you what to do with:&lt;/P&gt;
&lt;PRE&gt;Specify the LOESSMAXOBS option of the ODS GRAPHICS statement to override the limit.&lt;/PRE&gt;
&lt;P&gt;That means add, or modify your current, ODS Graphics with LOESSMAXOBS=89450, or larger.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should have an ODS Graphics On somewhere in your code for Logistic to create the plots. So perhaps add this before the Proc Logistic.&lt;/P&gt;
&lt;PRE&gt;ODS Graphics on / loessmaxobs=89450;&lt;/PRE&gt;
&lt;P&gt;Your log does not show any errors. Those notes are information that you requested something that exceeds normal behavior for one option. Sometimes requesting large numbers of observations for such options doesn't really improve the quality of a graph or adds significant time for little added information.&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 22:28:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878331#M82750</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-30T22:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Number of Observations Calibration Plot Fix</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878393#M82751</link>
      <description>&lt;P&gt;Hey Ballard,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help - that did it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It did run for an hour and a half but lacked memory due to the size. May need to consult with colleuages r.e a more powerful computer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 11:00:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878393#M82751</guid>
      <dc:creator>CraigSmith</dc:creator>
      <dc:date>2023-05-31T11:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Number of Observations Calibration Plot Fix</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878394#M82752</link>
      <description>&lt;P&gt;Depending on how/where you are running SAS software, there are invocation options that could allocate more memory to your SAS session!&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Command Line: sas -memsize 6G&lt;/LI&gt;
&lt;LI&gt;Windows Shortcut: Target: "[somePath\]sas.exe" "[somePath\]sasv9.cfg" -memsize 6G&lt;/LI&gt;
&lt;LI&gt;Enterprise Guide connecting to Server ---&amp;gt; Talk to your SAS system administrator &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 11:12:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Maximum-Number-of-Observations-Calibration-Plot-Fix/m-p/878394#M82752</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2023-05-31T11:12:24Z</dc:date>
    </item>
  </channel>
</rss>

