<?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 Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257448#M13617</link>
    <description>&lt;P&gt;I am so sorry for wasting your time. That was silly &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a typo in the macro that was generating that XYZ variable and I was overlooking the error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry and thanks a million.&lt;/P&gt;&lt;P&gt;PA&lt;/P&gt;</description>
    <pubDate>Thu, 17 Mar 2016 20:34:07 GMT</pubDate>
    <dc:creator>PAlves</dc:creator>
    <dc:date>2016-03-17T20:34:07Z</dc:date>
    <item>
      <title>Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257422#M13609</link>
      <description>&lt;P&gt;Hi, I am running the following code&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;BR /&gt;ods output FitStatistics = TempFit ParameterEstimates=TempEst NObs=TempNObs&lt;BR /&gt;RSquare=TempRSquare Classification=TempClass Association=TempAssoc ResponseProfile=TempResp;&lt;BR /&gt;proc logistic data=temp.temp_51101 DESCENDING;&lt;BR /&gt;model XYZ = AA BB CC DD EE /RSQUARE CTABLE pprob=(0.0 to 1 by 0.05);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;ods output close;&lt;BR /&gt;ods listing;&lt;BR /&gt;ods trace off;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I get the log&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: The SAS System stopped processing this step because of insufficient memory.&lt;BR /&gt;NOTE: There were 5169 observations read from the data set WORK.TEMP_51101.&lt;BR /&gt;NOTE: PROCEDURE LOGISTIC used (Total process time):&lt;BR /&gt;real time 0.69 seconds&lt;BR /&gt;cpu time 0.65 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The database is not particularly large and I cannot believe that there is a memory issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 19:25:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257422#M13609</guid>
      <dc:creator>PAlves</dc:creator>
      <dc:date>2016-03-17T19:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257430#M13612</link>
      <description>&lt;P&gt;Strange. The following call does the same compution on 5400 observations without difficulty for me. Can you run it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you run your model on your data when you omit the CTABLE and PPROB= options?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cars;
set sashelp.cars sashelp.cars sashelp.cars sashelp.cars sashelp.cars
    sashelp.cars sashelp.cars sashelp.cars sashelp.cars sashelp.cars
    sashelp.cars sashelp.cars sashelp.cars sashelp.cars sashelp.cars
    sashelp.cars sashelp.cars sashelp.cars sashelp.cars sashelp.cars;
where origin in ("USA" "Europe");
run;

proc logistic data=cars;
model origin = cylinders weight mpg_city mpg_highway invoice / RSQUARE CTABLE pprob=(0 to 1 by 0.05);
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Mar 2016 19:48:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257430#M13612</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-03-17T19:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257431#M13613</link>
      <description>&lt;P&gt;Hi, here it is:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;320 proc logistic data=cars;&lt;BR /&gt;321 model origin = cylinders weight mpg_city mpg_highway invoice / RSQUARE CTABLE pprob=(0 to 1 by 0.05);&lt;BR /&gt;322 run;&lt;/P&gt;&lt;P&gt;NOTE: PROC LOGISTIC is modeling the probability that Origin='Europe'. One way to change this to model the probability that Origin='USA'&lt;BR /&gt;is to specify the response variable option EVENT='USA'.&lt;BR /&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: There were 5400 observations read from the data set WORK.CARS.&lt;BR /&gt;NOTE: PROCEDURE LOGISTIC used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.03 second&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 19:50:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257431#M13613</guid>
      <dc:creator>PAlves</dc:creator>
      <dc:date>2016-03-17T19:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257437#M13614</link>
      <description>&lt;P&gt;Great.&amp;nbsp;The fact that you can run the example means that it is not a "lack of memory" problem.&amp;nbsp; My guess it that something is special/degenerate with your data, but I don't know what.&amp;nbsp; If you can attach the data, that would &amp;nbsp;help.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 19:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257437#M13614</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-03-17T19:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257441#M13615</link>
      <description>&lt;P&gt;Thanks a million. Here it goes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 20:05:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257441#M13615</guid>
      <dc:creator>PAlves</dc:creator>
      <dc:date>2016-03-17T20:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257447#M13616</link>
      <description>&lt;P&gt;PROC LOGISTIC is intended for regression when the response variable is binary (although it also supports other categorical distributions.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you run PROC FREQ on your XYZ variable, you will see that it is a continuous variable with 5169 unique values. PROC LOGISTIC is trying to fit a cumulative logit model&amp;nbsp;to this data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In short, the distribution of XYZ is not appropriate for PROC LOGISTIC. You can try other procedures like PROC REG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know anything about your data, but if you run PROC UNIVARIATE on the response variable, you will see that Obs=4801 is an extreme outlier. I'd check to see if it was miscoded.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 20:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257447#M13616</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-03-17T20:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Logistic:  ERROR: The SAS System stopped processing this step because of insufficient memor</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257448#M13617</link>
      <description>&lt;P&gt;I am so sorry for wasting your time. That was silly &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a typo in the macro that was generating that XYZ variable and I was overlooking the error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry and thanks a million.&lt;/P&gt;&lt;P&gt;PA&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 20:34:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-Logistic-ERROR-The-SAS-System-stopped-processing-this-step/m-p/257448#M13617</guid>
      <dc:creator>PAlves</dc:creator>
      <dc:date>2016-03-17T20:34:07Z</dc:date>
    </item>
  </channel>
</rss>

