<?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: Deails about repeated subject = id(center) in PROC GEE. in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831729#M41175</link>
    <description>&lt;P&gt;The GEE model does not use random effects, so you cannot add a random effect for CENTER in your PROC GEE model. If observations are considered correlated within IDs and observations from different IDs are considered uncorrelated, then SUBJECT=ID is what you need. And you are already adjusting for CENTER by including it as an effect in the MODEL statement.&lt;/P&gt;</description>
    <pubDate>Sun, 04 Sep 2022 18:57:48 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2022-09-04T18:57:48Z</dc:date>
    <item>
      <title>The details about subject = id(center) in the PROC GEE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831705#M41172</link>
      <description>&lt;P&gt;Dear all, I met a question in PROC GEE analysis:&lt;/P&gt;
&lt;P&gt;I want to add the center as a random effect to the model:&lt;/P&gt;
&lt;P&gt;However, in my data, the ID was an independent on Center. (Refers to ID in each enter was not repeated)&lt;/P&gt;
&lt;PRE class="xisDoc-code"&gt;data gee1;&lt;BR /&gt;input Center ID group Visit1-Visit4;&lt;BR /&gt;datalines;&lt;BR /&gt;1 1 1 0 0 0 0&lt;BR /&gt;1 2 1 0 0 0 0&lt;BR /&gt;1 3 1 1 1 1 1&lt;BR /&gt;1 4 0 1 1 1 0&lt;BR /&gt;1 5 1 1 1 1 1&lt;BR /&gt;1 6 0 0 0 0 0 &lt;BR /&gt;2 7 0 1 0 0 1&lt;BR /&gt;2 8 1 0 1 0 1&lt;BR /&gt;2 10 0 1 1 1 1&lt;BR /&gt;2 11 1 0 1 1 0&lt;BR /&gt;2 12 1 0 0 1 1&lt;BR /&gt;2 13 0 1 1 0 0 &lt;BR /&gt;;&lt;BR /&gt;data gee1;&lt;BR /&gt;set gee1;&lt;BR /&gt;Visit=1; Outcome=Visit1; output;&lt;BR /&gt;Visit=2; Outcome=Visit2; output;&lt;BR /&gt;Visit=3; Outcome=Visit3; output;&lt;BR /&gt;Visit=4; Outcome=Visit4; output;&lt;BR /&gt;run;&lt;BR /&gt;proc print; run;&lt;BR /&gt;Proc gee data = work.gee1 desc;&lt;BR /&gt;class id visit group(desc) outcome(desc) center;&lt;BR /&gt;model outcome = group / dist = binomial link = logit WALD TYPE3;&lt;BR /&gt;REPEATED subject = id(center)/ within = visit type = UN CORRW;&lt;BR /&gt;run;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And in the example in the&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_gee_examples01.htm," target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_gee_examples01.htm,&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The ID in each center is the same.&lt;/P&gt;
&lt;P&gt;Can I use the reapeated subject = id(center) to input center as random effect?&lt;/P&gt;
&lt;P&gt;If not, How Can I adjusted for center?&lt;/P&gt;
&lt;P&gt;Sincerely hope I can get you help!&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2022 08:19:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831705#M41172</guid>
      <dc:creator>Diels_O</dc:creator>
      <dc:date>2022-09-04T08:19:59Z</dc:date>
    </item>
    <item>
      <title>Deails about repeated subject = id(center) in PROC GEE.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831707#M41174</link>
      <description>&lt;P&gt;Dear all, I met a question in PROC GEE analysis:&lt;/P&gt;
&lt;P&gt;I want to add the center as a random effect to the model:&lt;/P&gt;
&lt;P&gt;However, in my data, the ID was an independent on Center. (Refers to ID in each enter was not repeated)&lt;/P&gt;
&lt;PRE class="xisDoc-code"&gt;data gee1;&lt;BR /&gt;input Center ID group Visit1-Visit4;&lt;BR /&gt;datalines;&lt;BR /&gt;1 1 1 0 0 0 0&lt;BR /&gt;1 2 1 0 0 0 0&lt;BR /&gt;1 3 1 1 1 1 1&lt;BR /&gt;1 4 0 1 1 1 0&lt;BR /&gt;1 5 1 1 1 1 1&lt;BR /&gt;1 6 0 0 0 0 0 &lt;BR /&gt;2 7 0 1 0 0 1&lt;BR /&gt;2 8 1 0 1 0 1&lt;BR /&gt;2 10 0 1 1 1 1&lt;BR /&gt;2 11 1 0 1 1 0&lt;BR /&gt;2 12 1 0 0 1 1&lt;BR /&gt;2 13 0 1 1 0 0 &lt;BR /&gt;;&lt;BR /&gt;data gee1;&lt;BR /&gt;set gee1;&lt;BR /&gt;Visit=1; Outcome=Visit1; output;&lt;BR /&gt;Visit=2; Outcome=Visit2; output;&lt;BR /&gt;Visit=3; Outcome=Visit3; output;&lt;BR /&gt;Visit=4; Outcome=Visit4; output;&lt;BR /&gt;run;&lt;BR /&gt;proc print; run;&lt;BR /&gt;Proc gee data = work.gee1 desc;&lt;BR /&gt;class id visit group(desc) outcome(desc) center;&lt;BR /&gt;model outcome = group / dist = binomial link = logit WALD TYPE3;&lt;BR /&gt;REPEATED subject = id(center)/ within = visit type = UN CORRW;&lt;BR /&gt;run;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And in the example in the&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_gee_examples01.htm," target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_gee_examples01.htm,&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The ID in each center is the same.&lt;/P&gt;
&lt;P&gt;Can I use the reapeated subject = id(center) to input center as random effect?&lt;/P&gt;
&lt;P&gt;If not, How Can I adjusted for center?&lt;/P&gt;
&lt;P&gt;Sincerely hope I can get you help!&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2022 09:27:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831707#M41174</guid>
      <dc:creator>Diels_O</dc:creator>
      <dc:date>2022-09-04T09:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Deails about repeated subject = id(center) in PROC GEE.</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831729#M41175</link>
      <description>&lt;P&gt;The GEE model does not use random effects, so you cannot add a random effect for CENTER in your PROC GEE model. If observations are considered correlated within IDs and observations from different IDs are considered uncorrelated, then SUBJECT=ID is what you need. And you are already adjusting for CENTER by including it as an effect in the MODEL statement.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Sep 2022 18:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/The-details-about-subject-id-center-in-the-PROC-GEE/m-p/831729#M41175</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-09-04T18:57:48Z</dc:date>
    </item>
  </channel>
</rss>

