<?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 Unbalanced Data in Proc Glimmix in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/567488#M27939</link>
    <description>&lt;P&gt;Hi, I am trying to run an ANOVA using Proc Glimmix with an unbalanced dataset. About 30% of my data are missing and I think it is causing severe underdispersion. My generalized chi square/DF value is 0.04.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;BR /&gt;class Coll Gen Rep;&lt;BR /&gt;model SG = Coll | Gen ;&lt;BR /&gt;random Rep;&lt;BR /&gt;lsmeans Gen/ pdiff adjust=tukey;&lt;BR /&gt;ods output lsmeans diffs;&lt;BR /&gt;ods output lsmeans=mmm diffs=ppp;&lt;BR /&gt;run;&lt;BR /&gt;%include 'C:\Users\uqkhodg1\Desktop\School-related\sas-macros\pdmix800.sas';&lt;BR /&gt;%pdmix800(ppp,mmm,alpha=0.05, sort=no);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions for dealing with the missing data?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2019 00:31:39 GMT</pubDate>
    <dc:creator>Katrina</dc:creator>
    <dc:date>2019-06-20T00:31:39Z</dc:date>
    <item>
      <title>Unbalanced Data in Proc Glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/567488#M27939</link>
      <description>&lt;P&gt;Hi, I am trying to run an ANOVA using Proc Glimmix with an unbalanced dataset. About 30% of my data are missing and I think it is causing severe underdispersion. My generalized chi square/DF value is 0.04.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;BR /&gt;class Coll Gen Rep;&lt;BR /&gt;model SG = Coll | Gen ;&lt;BR /&gt;random Rep;&lt;BR /&gt;lsmeans Gen/ pdiff adjust=tukey;&lt;BR /&gt;ods output lsmeans diffs;&lt;BR /&gt;ods output lsmeans=mmm diffs=ppp;&lt;BR /&gt;run;&lt;BR /&gt;%include 'C:\Users\uqkhodg1\Desktop\School-related\sas-macros\pdmix800.sas';&lt;BR /&gt;%pdmix800(ppp,mmm,alpha=0.05, sort=no);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions for dealing with the missing data?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 00:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/567488#M27939</guid>
      <dc:creator>Katrina</dc:creator>
      <dc:date>2019-06-20T00:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Unbalanced Data in Proc Glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/568205#M27973</link>
      <description>&lt;P&gt;The first step with missing data is to determine (as best you can) whether the data are MCAR, MAR or MNAR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MCAR stands for missing completely at random. This means that there is no particular reason why some data are missing. Maybe the hard disk crashed, or some responses (at random) were lost or something like that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MAR stands for missing at random.&amp;nbsp; This means that there may be reasons for the missingness, but that you can model those reasons using data that you actually have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MNAR means missing not at random (also known as nonignorable nonresponse). That's when neither of the above are true.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, there's no test for this - you have to figure it out, based on logic and what you know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For MCAR, you don't have to do anything. The only issue will be a loss of power. Estimates will be unbiased and so on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For MAR and MNAR you can use PROC MI and PROC MIANALYZE to do multiple imputation of the missing data. PROC MI is pretty complicated and the choices aren't always obvious. You may want to consult with an expert.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jun 2019 11:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/568205#M27973</guid>
      <dc:creator>plf515</dc:creator>
      <dc:date>2019-06-23T11:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Unbalanced Data in Proc Glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/568257#M27977</link>
      <description>Great, thanks so much. I think my data are MCAR so it sounds like there is nothing to do. I'm planning on repeating the measurements for the missing data, so hopefully this helps.</description>
      <pubDate>Mon, 24 Jun 2019 00:54:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Unbalanced-Data-in-Proc-Glimmix/m-p/568257#M27977</guid>
      <dc:creator>Katrina</dc:creator>
      <dc:date>2019-06-24T00:54:56Z</dc:date>
    </item>
  </channel>
</rss>

