<?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 HPLogistic and Logistic end up with different parameter estimates in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211321#M267418</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;proc logistic default using Fisher Score to estimate Max Likelihood, not Newton-Raphson . Maybe it is a little difference between them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, What module is &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;HPLOGISTIC&amp;nbsp; in ? I didn't find it in SAS/STAT yet ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jun 2015 13:40:47 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2015-06-23T13:40:47Z</dc:date>
    <item>
      <title>Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211314#M267411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I decided to port my "normal" model build code to proc hplogistic. After wrestling with all the options I think I managed to do this, however in the process I have noticed something odd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When fed with the same settings (same data set, same target variable, same variable list) proc logistic and proc hplogisitc end up with ever so slightly different estimates for the coefficients. This is true even I I specify the same technique in proc logistic as in proc hplogisitc (technique=newton). The differences are very small, however I am worried I have missed something. Any idea what it could be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Estimate differences&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Variable name&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Proc logistic estimate&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Proc hplogisitc estimate&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Intercept&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-0.40017041503038&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-0.40016018866442&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Variable A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-0.86355666216567&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-0.86355818846804&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Variable B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-0.00421933005198&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-0.00421943244787&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Proc logistic code&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc logistic data=&amp;amp;modelin. descending outest=lib.modparams;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; weight &amp;amp;weightvar.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; model &amp;amp;targetvar.= &amp;amp;modnum.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /selection=stepwise slentry=&amp;amp;entry. slstay=&amp;amp;exit. RSQ lackfit outroc=Roc technique=newton MAXITER=50; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; output out=&amp;amp;modelout. p=pred;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Proc hplogistic code&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc hplogistic data=&amp;amp;modelin. technique=NRRIDG;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; model &amp;amp;targetvar. (descending) = &amp;amp;modnum. / lackfit rsquare;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; selection method=stepwise(slentry=&amp;amp;entry. slstay=&amp;amp;exit.) details=all;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; output out=&amp;amp;modelout. p=pred copyvar=(&amp;amp;keyCol. &amp;amp;weightvar.);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas what the difference is, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 14:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211314#M267411</guid>
      <dc:creator>jakub_deka</dc:creator>
      <dc:date>2015-06-22T14:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211315#M267412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Why doesn't your PROC HPLOGISTIC have a WEIGHT statement, similar to your logistic model?&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I'm also assuming you're familiar with the caveats of using the WEIGHT statement in PROC LOGISTIC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 14:52:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211315#M267412</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-06-22T14:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211316#M267413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent point, however in both cases weight is set to 1 for each observation (in proc logistic case I added a column to the dataset with value of 1 for each row).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I rerun the code and I can see the same result with or without WEIGHT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reference this PROC SQL is used to create a dataset that is then fed into PROC LOGISTIC/PROC HPLOGISTIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc sql;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; create table build as select *, 1 as w from l.data where isDue = 1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 15:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211316#M267413</guid>
      <dc:creator>jakub_deka</dc:creator>
      <dc:date>2015-06-22T15:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211317#M267414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should not worry about such small differences. The estimates calculated by most all procedures (including the proc logistic/hplogistic) is found by numerical maximation of a likelihood function. The difference you see&amp;nbsp; is caused by either different methods to maximize the function, or different tolerance of how close the solution should be to the maximum before it returns its results.&lt;/P&gt;&lt;P&gt;If you are currious, you can try play a bit with the tolerence parameters. Try for instance to set the GCONV option at a smaller level.&amp;nbsp; Btw, when you set maxiter at 50, it just Means it allows for 50 iterations, but it will stop when it reach convergence criterium.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc hplogistic data=&amp;amp;modelin. technique=NRRIDG GCONV=1E-6;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; model &amp;amp;targetvar. (descending) = &amp;amp;modnum. / lackfit rsquare;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; selection method=stepwise(slentry=&amp;amp;entry. slstay=&amp;amp;exit.) details=all;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; output out=&amp;amp;modelout. p=pred copyvar=(&amp;amp;keyCol. &amp;amp;weightvar.);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc logistic data=&amp;amp;modelin. descending outest=lib.modparams;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; weight &amp;amp;weightvar.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; model &amp;amp;targetvar.= &amp;amp;modnum.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /selection=stepwise slentry=&amp;amp;entry. slstay=&amp;amp;exit. RSQ lackfit outroc=Roc technique=newton MAXITER=50 &lt;/SPAN&gt;GCONV=&lt;SPAN class=" AAargument"&gt;1E-6&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; output out=&amp;amp;modelout. p=pred;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=" AAargument"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 15:05:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211317#M267414</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2015-06-22T15:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211318#M267415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. I appreciate that the difference is small (and in practice the difference is meaningless), however I would like to understand what is the underlying source of the difference. Is this difference caused by settings or difference in underlying implementation of logistic regression?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw using GCONV=1E-6 for both generates slightly difference estimates from original run with a small difference between PROC LOGISTIC and PROC HPLOGISTIC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 15:18:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211318#M267415</guid>
      <dc:creator>jakub_deka</dc:creator>
      <dc:date>2015-06-22T15:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211319#M267416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe, if you change to TECHNIQUE=NEWRAP in hplogistic, there is a change that it will use exactly same way from startingpoint approching the maximum. If not, then dont think more about it:-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 15:44:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211319#M267416</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2015-06-22T15:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211320#M267417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="827493" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; has identified the difference, I believe.&amp;nbsp; HPLOGISTIC is using Newton-Raphson with ridging (the default method, but also specified in your code).&amp;nbsp; LOGISTIC uses straight Newton-Raphson, with no ridging--and there is the source of the trivial differences.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 17:47:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211320#M267417</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-06-22T17:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211321#M267418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;proc logistic default using Fisher Score to estimate Max Likelihood, not Newton-Raphson . Maybe it is a little difference between them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, What module is &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;HPLOGISTIC&amp;nbsp; in ? I didn't find it in SAS/STAT yet ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 13:40:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211321#M267418</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-06-23T13:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211322#M267419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hplogistic is in SAS/STAT, at least from&amp;nbsp; sas/stat 12.3. They are described in the documentation in its own section within the SAS/STAT.&lt;/P&gt;&lt;P&gt;Correct that the Fisher scoring is used by default in proc logistic, but here the option "technique=newton" is Applied.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 13:57:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211322#M267419</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2015-06-23T13:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211323#M267420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jacob,&lt;/P&gt;&lt;P&gt;Thanks. But I can't run &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;hplogistic&amp;nbsp; in SAS University Edition , Why ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 14:03:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211323#M267420</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-06-23T14:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPLogistic and Logistic end up with different parameter estimates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211324#M267421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think any of the high performance stat procs are available in UE, but I may be mistaken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 15:22:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-HPLogistic-and-Logistic-end-up-with-different-parameter/m-p/211324#M267421</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-06-23T15:22:42Z</dc:date>
    </item>
  </channel>
</rss>

