<?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 Penalized likelihood estimation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298595#M15889</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;I found that Firth’s penalized likelihood approach can be used insted of binary logistic regression in the prediction . However, I couldn’t find it in SAS university addition&lt;/DIV&gt;&lt;DIV&gt;So could you kindly please tell me how can I find it in this SAS addition&lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;</description>
    <pubDate>Thu, 15 Sep 2016 10:27:55 GMT</pubDate>
    <dc:creator>MMadi</dc:creator>
    <dc:date>2016-09-15T10:27:55Z</dc:date>
    <item>
      <title>Penalized likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298595#M15889</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;I found that Firth’s penalized likelihood approach can be used insted of binary logistic regression in the prediction . However, I couldn’t find it in SAS university addition&lt;/DIV&gt;&lt;DIV&gt;So could you kindly please tell me how can I find it in this SAS addition&lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;</description>
      <pubDate>Thu, 15 Sep 2016 10:27:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298595#M15889</guid>
      <dc:creator>MMadi</dc:creator>
      <dc:date>2016-09-15T10:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Penalized likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298620#M15890</link>
      <description>&lt;P&gt;SAS procedures have hundreds of options. Only the most common options are surfaced through the tasks in SAS Studio and SAS UE. However, the tasks merely generate SAS code (shown in the &lt;STRONG&gt;Code&lt;/STRONG&gt; tab) and you can always add options to the generated code. &amp;nbsp;In this case:&lt;/P&gt;
&lt;P&gt;1. Consult the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_logistic_syntax22.htm" target="_self"&gt;PROC LOGISTIC documentation&lt;/A&gt;&amp;nbsp;to learn that the FIRTH option is specified on the MODEL statement.&lt;/P&gt;
&lt;P&gt;2. Use the Binary Logistic Regression task to set up the model, but don't run it yet.&lt;/P&gt;
&lt;P&gt;3. Click on the &lt;STRONG&gt;Code&lt;/STRONG&gt; tab and click the &lt;STRONG&gt;Edit &lt;/STRONG&gt;button.&lt;/P&gt;
&lt;P&gt;4. The code will be copied to a new tab called something like &lt;STRONG&gt;Program 2. &lt;/STRONG&gt;You can edit this program. Click at the end of the MODEL statement and type FIRTH before the semicolon.&lt;/P&gt;
&lt;P&gt;5. Click the "running man" &amp;nbsp;icon to run the SAS code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the program output, you should verify that the FIRTH method was used by looking at the Model Information table. It will have a row that says: &lt;STRONG&gt;Likelihood penalty: Firth's bias correction&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 12:14:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298620#M15890</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-09-15T12:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Penalized likelihood estimation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298627#M15891</link>
      <description>&lt;P&gt;Using Firths penalized likelihood instead of the ordinary likelihood is an option in the model statement in proc logistic. It is still binary logistic regression so it is not right to say that you i&lt;EM&gt;nstead &lt;/EM&gt;use Firths likelihood. Here is a simple example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data mydata;
  input n x exposure;
  cards;
100 10 0
100 5 1
;
run;
proc logistic data=mydata;
  class exposure(ref="0")/param=glm;
  model x/n=exposure/firth;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Sep 2016 13:12:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Penalized-likelihood-estimation/m-p/298627#M15891</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2016-09-15T13:12:43Z</dc:date>
    </item>
  </channel>
</rss>

