<?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 How do I set up PROC GLIMMIX for simple biology problem? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314244#M61541</link>
    <description>&lt;P&gt;In a paper on reintroduced cranes, I have data like this: ID, Sex, Year, Dispersal* (e.g., 1-01, M, 2002, 1)&lt;/P&gt;&lt;P&gt;I want to show that females disperse more than males.&lt;/P&gt;&lt;P&gt;I used chi-square. Reviewer indicated this violated assumption of independence because of multiple years of data for same birds and that I should use GLIMMIX.&lt;/P&gt;&lt;P&gt;What are lines of code needed to set up model?&lt;/P&gt;&lt;P&gt;SAS version 9.x (latest)&lt;/P&gt;&lt;P&gt;*Dispersal: 1 = in reintroduction area; 0 = out (dispersed).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks, Richard&lt;/P&gt;</description>
    <pubDate>Fri, 25 Nov 2016 08:59:02 GMT</pubDate>
    <dc:creator>r1231</dc:creator>
    <dc:date>2016-11-25T08:59:02Z</dc:date>
    <item>
      <title>How do I set up PROC GLIMMIX for simple biology problem?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314244#M61541</link>
      <description>&lt;P&gt;In a paper on reintroduced cranes, I have data like this: ID, Sex, Year, Dispersal* (e.g., 1-01, M, 2002, 1)&lt;/P&gt;&lt;P&gt;I want to show that females disperse more than males.&lt;/P&gt;&lt;P&gt;I used chi-square. Reviewer indicated this violated assumption of independence because of multiple years of data for same birds and that I should use GLIMMIX.&lt;/P&gt;&lt;P&gt;What are lines of code needed to set up model?&lt;/P&gt;&lt;P&gt;SAS version 9.x (latest)&lt;/P&gt;&lt;P&gt;*Dispersal: 1 = in reintroduction area; 0 = out (dispersed).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks, Richard&lt;/P&gt;</description>
      <pubDate>Fri, 25 Nov 2016 08:59:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314244#M61541</guid>
      <dc:creator>r1231</dc:creator>
      <dc:date>2016-11-25T08:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I set up PROC GLIMMIX for simple biology problem?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314272#M61548</link>
      <description>Or proc mixed. make ID as Subject variable, Year as a random effect.
You should call &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/54967"&gt;@Steve&lt;/a&gt; or &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13758"&gt;@lvm&lt;/a&gt;</description>
      <pubDate>Fri, 25 Nov 2016 11:09:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314272#M61548</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-25T11:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I set up PROC GLIMMIX for simple biology problem?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314597#M61564</link>
      <description>&lt;P&gt;id = identification code for each bird.&lt;/P&gt;&lt;P&gt;out = dispersal value (=1 if out of reintro. area); each bird has data in 1 or more years (observations).&lt;/P&gt;&lt;P&gt;This code:&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;/P&gt;&lt;P&gt;title 'difference in dispersal by sex including all birds';&lt;/P&gt;&lt;P&gt;class sex id;&lt;/P&gt;&lt;P&gt;model out = sex / link=logit dist=binomial;&lt;/P&gt;&lt;P&gt;random int / subject=id;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Produces these results: &lt;FONT face="Calibri"&gt;&lt;FONT color="#000000" size="3"&gt;Type III Tests of Fixe Effects:&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#000000" size="3"&gt;Effect = Sex, Num DF = 1, Den DF = 568, F Value = 5.26, Pr &amp;gt; F = 0.0221&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Does this look correct? Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Nov 2016 12:50:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314597#M61564</guid>
      <dc:creator>r1231</dc:creator>
      <dc:date>2016-11-27T12:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I set up PROC GLIMMIX for simple biology problem?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314602#M61565</link>
      <description>&lt;PRE&gt;
Sorry. I am not expert about proc glimmix.
You should post it at Statistical Forum. 
@Steve @lvm ...   are there .


&lt;/PRE&gt;</description>
      <pubDate>Sun, 27 Nov 2016 13:04:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-do-I-set-up-PROC-GLIMMIX-for-simple-biology-problem/m-p/314602#M61565</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-27T13:04:30Z</dc:date>
    </item>
  </channel>
</rss>

