<?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: 4 Factorial-Split Plot Proc mixed in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101371#M5304</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Paige!&amp;nbsp; its look very good.&amp;nbsp; Maybe I said it wrong, but block should be the whole plot, because each block includes the 3 nematodes, the 2 different treatments and the cultivars, so nematode and treatment should be the plot, and cultivar the subplot.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2013 17:21:28 GMT</pubDate>
    <dc:creator>palolix</dc:creator>
    <dc:date>2013-02-07T17:21:28Z</dc:date>
    <item>
      <title>4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101361#M5294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, does anybody knows how to code a 4 Factorial-Split Plot design with proc mixed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank´s a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caroline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 12:57:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101361#M5294</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-07T12:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101362#M5295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are examples of using PROC MIXED for split plots in both the online SAS help, plus in the book "SAS System for Mixed Models" by Littell, Milliken Stroup and Wolfinger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You really haven't given us enough details about the design for us to give more explicit instructions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:05:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101362#M5295</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-02-07T13:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101363#M5296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I could give it a shot, but details of the design, including the nature of all variables, are absolutely a minimum requirement, as per &lt;A __default_attr="9481" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;.&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, 07 Feb 2013 13:18:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101363#M5296</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-02-07T13:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101364#M5297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you very much for your answer Paige!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already cheked it on SAS help, but there are only examples with 2 factors, but not with 4.&amp;nbsp; In my design, I want to test the effect of the following variables:&lt;/P&gt;&lt;P&gt;Block&lt;/P&gt;&lt;P&gt;Year (3)&lt;/P&gt;&lt;P&gt;Nematodes (2 species)-wholeplot&lt;/P&gt;&lt;P&gt;Treatment (2)-Plot&lt;/P&gt;&lt;P&gt;Cereal Cultivar (3)-Subplot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is how I do it with 3 factors, but I do not know how is the code when I want to add another factor (year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc mixed data=one;&lt;/P&gt;&lt;P&gt;class blk nem trt cultivar;&lt;/P&gt;&lt;P&gt;model lgsprCysts100=&lt;/P&gt;&lt;P&gt;nem&lt;/P&gt;&lt;P&gt;trt&lt;/P&gt;&lt;P&gt;trt*cultivar&lt;/P&gt;&lt;P&gt;cultivar&lt;/P&gt;&lt;P&gt;nem*cultivar&lt;/P&gt;&lt;P&gt;trt*cultivar&lt;/P&gt;&lt;P&gt;nem*trt*cultivar/ddfm=Satterth;&lt;/P&gt;&lt;P&gt;random blk blk*nem blk*nem*trt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:21:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101364#M5297</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-07T13:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101365#M5298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is Year crossed with the other factors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:31:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101365#M5298</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-02-07T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101366#M5299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess, because each year a different cereal was planted.&amp;nbsp; I want to compare the dependent variable between 3 years.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:37:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101366#M5299</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-07T13:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101367#M5300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If each year a different cereal was planted, then cereal is nested within year, but year could still be crossed with treatment and nematodes. Could you confirm?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the types of details that we require if we are going to provide a meaningful and correct answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:46:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101367#M5300</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-02-07T13:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101368#M5301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I guess cereal could be nested in year, and year could also be crossed with treatment and nematodes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 13:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101368#M5301</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-07T13:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101369#M5302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think maybe I should analize it as a Split-split plot model in order to include the year, which should be include before block and the rest of the factors.&amp;nbsp; What do you think?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 16:49:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101369#M5302</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-07T16:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101370#M5303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that you have to analyze the design in an appropriate manner. So if Year is crossed with the other factors, then it can't be a split-split plot (I don't think).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I think this is the analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year and Nematode and their interaction is the whole plot, treatment is plot, cereal cultivar nested within Year is subplot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this is my analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc mixed;&lt;/P&gt;&lt;P&gt;class year blk nem trt cultivar;&lt;/P&gt;&lt;P&gt;model lgsprCysts100=nem|year trt trt*nem trt*year trt*nem*year cultivar(year) cultivar(year)*nem cultivar(year)*trt cultivar(year)*new*trt;&lt;/P&gt;&lt;P&gt;random blk blk*trt blk*trt*nem blk*trt*year blk*trt*year*nem;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe I'm way off. What do you think, &lt;A __default_attr="455729" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 17:06:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101370#M5303</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-02-07T17:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101371#M5304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Paige!&amp;nbsp; its look very good.&amp;nbsp; Maybe I said it wrong, but block should be the whole plot, because each block includes the 3 nematodes, the 2 different treatments and the cultivars, so nematode and treatment should be the plot, and cultivar the subplot.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 17:21:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101371#M5304</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-07T17:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101372#M5305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to be so slow in replying.&amp;nbsp; That model ought to be OK.&amp;nbsp; Now I'm going to worry more about the dependent variable, and whether this should be done in GLIMMIX with an untransformed DV and an appropriate distribution for counts of cysts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it were in GLIMMIX, with a negative binomial distribution for overdispersed counts, we could also get an appropriate covariance error structure to model any time dependence over years.&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, 11 Feb 2013 14:14:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101372#M5305</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-02-11T14:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101373#M5306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your reply Steve!&amp;nbsp; I think this model should be also ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc mixed data=one;&lt;/P&gt;&lt;P&gt;where nem&amp;gt;1;&lt;/P&gt;&lt;P&gt;class blk nem trt crop date;&lt;/P&gt;&lt;P&gt;model lgsprCysts100=&lt;/P&gt;&lt;P&gt;nem|trt|crop|date/ddfm=Satterth;&lt;/P&gt;&lt;P&gt;random blk blk*nem blk*nem*trt*crop;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2013 09:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101373#M5306</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-14T09:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101374#M5307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Split plot design but with 4 factors; nem, trt, crop and date.&amp;nbsp; Until now I have only done split-split designs, but what comes next when you have to add a forth factor.&amp;nbsp; Is this code ok??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;blk&lt;/P&gt;&lt;P&gt;nem&lt;/P&gt;&lt;P&gt;blk*nem&lt;/P&gt;&lt;P&gt;trt&lt;/P&gt;&lt;P&gt;nem*trt&lt;/P&gt;&lt;P&gt;blk*nem*trt&lt;/P&gt;&lt;P&gt;crop&lt;/P&gt;&lt;P&gt;blk*crop&lt;/P&gt;&lt;P&gt;nem*crop&lt;/P&gt;&lt;P&gt;trt*crop&lt;/P&gt;&lt;P&gt;blk*nem*crop&lt;/P&gt;&lt;P&gt;nem*trt*crop&lt;/P&gt;&lt;P&gt;date&lt;/P&gt;&lt;P&gt;blk*date&lt;/P&gt;&lt;P&gt;nem*date&lt;/P&gt;&lt;P&gt;trt*date&lt;/P&gt;&lt;P&gt;crop*date&lt;/P&gt;&lt;P&gt;blk*nem*trt*date&lt;/P&gt;&lt;P&gt;nem*trt*crop*date;&lt;/P&gt;&lt;P&gt;random blk blk*nem blk*nem*trt blk*crop blk*nem*crop blk*date blk*nem*trt*date/test;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 17:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101374#M5307</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-15T17:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101375#M5308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Caroline,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there may be some missing factors.&amp;nbsp; Let me see if the design is correct:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fixed effects: nematode type, treatment, crop&lt;/P&gt;&lt;P&gt;Random effect: block&lt;/P&gt;&lt;P&gt;Repeated effect: date&lt;/P&gt;&lt;P&gt;I assume that there is a single measurement per date for the nem*trt*crop*block cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the case, it looks like the following might be what you should consider:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc mixed;&lt;/P&gt;&lt;P&gt;class nem trt crop blk date;&lt;/P&gt;&lt;P&gt;model nem|trt|crop|date;&lt;/P&gt;&lt;P&gt;random intercept nem|trt|crop/subject=blk;&lt;/P&gt;&lt;P&gt;repeated date/subject=nem*trt*crop*blk type=&amp;lt;insert appropriate type here depending on spacing of dates, cs or csh for uneven spacing, ar(1) or arh(1) for regular spacing;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appropriate options should be added for solutions, etc., as well as LSmean or LSestimate statements as needed.&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, 18 Feb 2013 12:35:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101375#M5308</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-02-18T12:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101376#M5309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ja, there is a single measurement per date, and and there is a regular spacing for date (harvest 2010, harvest 2011 and harvest 2012).&amp;nbsp; The thing is that is not a repeated measures model, because the crop are not the same every year, so the conditions are not the same every year.&amp;nbsp; How would you code this model with proc glm?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caroline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 13:56:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101376#M5309</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-19T13:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101377#M5310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Caroline,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would never code it with proc glm.&amp;nbsp; See Walter Stoup (2013) &lt;EM&gt;Generalized Linear Mixed Models.&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;PROC GLM just does not do a good job of analyzing repeated measures or split plot models.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fact that the crop is not the same across all dates does present a problem in terms of estimability of means.&amp;nbsp; There will be "missing" cells by design.&amp;nbsp; To get around this, I would fit a cell means model, and use LSMESTIMATE statements to derive lower order means and comparisons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;/P&gt;&lt;P&gt;class nem trt crop blk date;&lt;/P&gt;&lt;P&gt;model&amp;nbsp; lgsprCysts100=nem*trt*crop*date/noint; /* This fits a cell means model */&lt;/P&gt;&lt;P&gt;random intercept nem|trt|crop/subject=blk;&lt;/P&gt;&lt;P&gt;random date/ residual subject=nem*trt*crop*blk type=arh(1); /* This may be problematical to fit, due to the small number of levels for date, and incomplete subjects.&amp;nbsp; If so, try type=chol */&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LSMESTIMATE statements will need to be added later. I also have a hunch that the dependent variable is a count variable, and rather than a log transform prior to analysis, a log link should be used so that the dependence of the variance on the mean can also be captured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2013 16:48:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101377#M5310</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-02-20T16:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: 4 Factorial-Split Plot Proc mixed</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101378#M5311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Steve!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used to run my models (also split plot models) as a first run with proc glm in order to pool, so I can get a clean model when using proc mixed.&amp;nbsp;&amp;nbsp;&amp;nbsp; In this case, I think I do not have a repeated measures, because not only the crops are different every year, but also the planting dates, so the circunstances differ every year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caroline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2013 17:04:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/4-Factorial-Split-Plot-Proc-mixed/m-p/101378#M5311</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2013-02-20T17:04:47Z</dc:date>
    </item>
  </channel>
</rss>

