<?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 GEE (Multinominal Outcome) - Estimate Statement in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943183#M47096</link>
    <description>&lt;P&gt;Great! Thank you! Just to be clear, the only difference between Category = Separate and Category = Joint is how the output is presented. The separate statement presents each comparison in its own table vs the joint table puts it all together. Is that correct?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Sep 2024 16:28:42 GMT</pubDate>
    <dc:creator>varatt90</dc:creator>
    <dc:date>2024-09-09T16:28:42Z</dc:date>
    <item>
      <title>Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943155#M47087</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm running proc gee for a multinominal outcome (0 1 2 3 4, with ref = 0).&amp;nbsp;I would like to find the odds ratio for a continuous predictor using the Estimate statement (please see code below).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, in my estimates table, I notice that I do get an estimate but the outcome column shows "0" instead of 1, 2,3, or 4.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could someone verify if my code is written correctly?&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;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc GEE Data = Test;
Class =schoolid outcome year (ref = "0");
Model outcome (ref = "0") = year age;
Repeated subject = schoolid&amp;nbsp; / type = ind;
Estimate "1 vs 0"&amp;nbsp; Age 1 / exp cl;
Estimate "2 vs 0"&amp;nbsp; Age 2 / exp cl;
Estimate "3 vs 0"&amp;nbsp; Age 3 / exp cl;
Estimate "4 vs 0"&amp;nbsp; Age 4 / exp cl;
LSMEANS Year /diff oddsratio cl ; &lt;BR /&gt;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>Mon, 09 Sep 2024 14:17:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943155#M47087</guid>
      <dc:creator>varatt90</dc:creator>
      <dc:date>2024-09-09T14:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943156#M47088</link>
      <description>&lt;P&gt;Could you post the output you are unclear about?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 14:25:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943156#M47088</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2024-09-09T14:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943157#M47089</link>
      <description>&lt;P&gt;It may not hurt to show the LOG with the code actually submitted and any notes.&lt;/P&gt;
&lt;P&gt;I would expect an ERROR message and no output generated because of the = in the CLASS statement.&lt;/P&gt;
&lt;P&gt;Modifying one of the GEE example to show what happens when an equal sign is present on the CLASS statement:&lt;/P&gt;
&lt;PRE&gt;540  proc gee data=Resp descend;
541     class= ID Treatment Center Sex Baseline;
        -----
        180
ERROR 180-322: Statement is not valid or it is used out of proper order.

542     model Outcome=Treatment Center Sex Age Baseline /
543           dist=bin link=logit;
544     repeated subject=ID(Center) / corr=exch corrw;
545  run;

WARNING: No MODEL statement has been specified. No analysis will be done.

&lt;/PRE&gt;
&lt;P&gt;So make sure the code you share is actually what generates the output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/427210"&gt;@varatt90&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm running proc gee for a multinominal outcome (0 1 2 3 4, with ref = 0).&amp;nbsp;I would like to find the odds ratio for a continuous predictor using the Estimate statement (please see code below).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, in my estimates table, I notice that I do get an estimate but the outcome column shows "0" instead of 1, 2,3, or 4.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could someone verify if my code is written correctly?&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;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc GEE Data = Test;
Class =schoolid outcome year (ref = "0");
Model outcome (ref = "0") = year age;
Repeated subject = schoolid&amp;nbsp; / type = ind;
Estimate "1 vs 0"&amp;nbsp; Age 1 / exp cl;
Estimate "2 vs 0"&amp;nbsp; Age 2 / exp cl;
Estimate "3 vs 0"&amp;nbsp; Age 3 / exp cl;
Estimate "4 vs 0"&amp;nbsp; Age 4 / exp cl;
LSMEANS Year /diff oddsratio cl ; &lt;BR /&gt;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;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 14:35:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943157#M47089</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-09-09T14:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943161#M47090</link>
      <description>&lt;P class="p1"&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Here's the output: &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-09-09 at 10.43.53 AM.png" style="width: 537px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/100116iDEEB6DCEC0217EBA/image-dimensions/537x47?v=v2" width="537" height="47" role="button" title="Screenshot 2024-09-09 at 10.43.53 AM.png" alt="Screenshot 2024-09-09 at 10.43.53 AM.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Also, I realized in the log, it says &lt;EM&gt;&lt;STRONG&gt;"Note: Results for ESTIMATE statements without a CATEGORY= option apply to the response level '0' ".&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;STRONG&gt;How does the category option work?&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 14:46:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943161#M47090</guid>
      <dc:creator>varatt90</dc:creator>
      <dc:date>2024-09-09T14:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943162#M47091</link>
      <description>Thanks for catching that error! I did write it as CLASS schoolid (without the equal sign) in SAS.</description>
      <pubDate>Mon, 09 Sep 2024 14:49:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943162#M47091</guid>
      <dc:creator>varatt90</dc:creator>
      <dc:date>2024-09-09T14:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943163#M47092</link>
      <description>&lt;P&gt;See &lt;A href="http://support.sas.com/kb/41516" target="_self"&gt;this note&lt;/A&gt; that discusses and illustrates the use of the CATEGORY= option with multinomial models. The example shows the model fit by PROC LOGISTIC, but should apply to your GEE model.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 14:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943163#M47092</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-09-09T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943183#M47096</link>
      <description>&lt;P&gt;Great! Thank you! Just to be clear, the only difference between Category = Separate and Category = Joint is how the output is presented. The separate statement presents each comparison in its own table vs the joint table puts it all together. Is that correct?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 16:28:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943183#M47096</guid>
      <dc:creator>varatt90</dc:creator>
      <dc:date>2024-09-09T16:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc GEE (Multinominal Outcome) - Estimate Statement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943184#M47097</link>
      <description>Yes</description>
      <pubDate>Mon, 09 Sep 2024 16:31:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Proc-GEE-Multinominal-Outcome-Estimate-Statement/m-p/943184#M47097</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2024-09-09T16:31:03Z</dc:date>
    </item>
  </channel>
</rss>

