<?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: GEE GLIMMIX in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178089#M45511</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not a coder in that way, so my attempts would be pretty horrible.&amp;nbsp; Google for examples of each of the steps I mentioned, and I am sure you can find much better code than I can develop (or have time to develop).&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>Thu, 26 Feb 2015 13:09:18 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2015-02-26T13:09:18Z</dc:date>
    <item>
      <title>GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178083#M45505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all, &lt;/P&gt;&lt;P&gt;i had done propensity score matching.&amp;nbsp; i need use proc glimmix because permit to specify beta distribution for longitudinal model&lt;/P&gt;&lt;P&gt;How can account for matching variable in this proc&amp;nbsp; ( the strata variable into conditional logistic) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Beta GEE;&lt;/P&gt;&lt;P&gt;proc glimmix data=data_; &lt;/P&gt;&lt;P&gt;class id&amp;nbsp; time&amp;nbsp; trt;&lt;/P&gt;&lt;P&gt;model y =&amp;nbsp; trt time time trt / dist=beta s ddfm=none covb; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;were i account for strata (matching variable)???&amp;nbsp; :smileyshocked:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;random _residual_ / subject=id type=cs vcorr;&lt;/P&gt;&lt;P&gt;lsmeans diab*time /ilink cl; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best &lt;/P&gt;&lt;P&gt;G Bonitta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2015 06:09:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178083#M45505</guid>
      <dc:creator>BonittaG</dc:creator>
      <dc:date>2015-02-21T06:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178084#M45506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some things to consider:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need a name for the matching variable.&amp;nbsp; For now, I will call it pairid. &lt;/P&gt;&lt;P&gt;There is a variable in the lsmeans statement called diab that is not identified in either the class or model statement.&amp;nbsp; What does this variable represent?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what might work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix data=data_;&lt;/P&gt;&lt;P&gt;class id pairid time trt;&lt;/P&gt;&lt;P&gt;model y = trt time trt*time/dist=beta s ddfm=none covb;&lt;/P&gt;&lt;P&gt;random&amp;nbsp; intercept/subject=pairid;&lt;/P&gt;&lt;P&gt;random time/residual subject=id type= &amp;lt;&amp;gt; vcorr;&lt;/P&gt;&lt;P&gt;lsmeans trt*time/ilink cl;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not specify the structure for the R side repeated in time variable.&amp;nbsp; That will depend on the spacing on the 'time' variable and what assumptions can be made.&amp;nbsp; Type=CS may involve too many assumptions to be a realistic covariance structure, although it is handy for fitting unequal spacing in time.&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, 23 Feb 2015 19:01:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178084#M45506</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-02-23T19:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178085#M45507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You very Much&lt;/P&gt;&lt;P&gt;you right&amp;nbsp; pardon me my mistake&amp;nbsp;&amp;nbsp; diab&amp;nbsp; is trt ....&lt;/P&gt;&lt;P&gt;I'm an&amp;nbsp; R user and new into SAS enviroment..&lt;/P&gt;&lt;P&gt;Seeing your competence i ask agian a little question .. :&lt;/P&gt;&lt;P&gt;how can I&amp;nbsp; plot mean residual vs decile of linear predictor about the specifided model we are discuss ?&lt;/P&gt;&lt;P&gt;Sorry for noise ...&lt;/P&gt;&lt;P&gt;Thank You again&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Bonitta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 06:21:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178085#M45507</guid>
      <dc:creator>BonittaG</dc:creator>
      <dc:date>2015-02-24T06:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178086#M45508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For residuals plot that i need maby i can use this from&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_glimmix_a0000001413.htm" title="http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_glimmix_a0000001413.htm"&gt;SAS/STAT(R) 9.2 User's Guide, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output statement&amp;nbsp; correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; proc glimmix;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; stuff code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; output out=igausout pred=p resid=r;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&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;Bonitta&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 07:12:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178086#M45508</guid>
      <dc:creator>BonittaG</dc:creator>
      <dc:date>2015-02-24T07:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178087#M45509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the OUTPUT statement will give predicted and residual values.&amp;nbsp; From there to your request for plotting is a journey through the DATA step to calculate the decile cutpoints, then the mean residual within those, and finally SGPLOT to plot the two against one another.&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, 24 Feb 2015 12:39:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178087#M45509</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-02-24T12:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178088#M45510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ....can you so gentle to&amp;nbsp; write the code for do that ? about the model&lt;/P&gt;&lt;P&gt;for plot mean residuals vs linear predictor&lt;/P&gt;&lt;P&gt;Thank You so much&lt;/P&gt;&lt;P&gt;Sorry for noise&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Bonitta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 12:41:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178088#M45510</guid>
      <dc:creator>BonittaG</dc:creator>
      <dc:date>2015-02-25T12:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: GEE GLIMMIX</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178089#M45511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not a coder in that way, so my attempts would be pretty horrible.&amp;nbsp; Google for examples of each of the steps I mentioned, and I am sure you can find much better code than I can develop (or have time to develop).&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>Thu, 26 Feb 2015 13:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/GEE-GLIMMIX/m-p/178089#M45511</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-02-26T13:09:18Z</dc:date>
    </item>
  </channel>
</rss>

