<?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: Performance factorial of ANOVA in SAS 9.0 in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/228166#M12058</link>
    <description>Dear SteveDenm,&lt;BR /&gt;&lt;BR /&gt;I hope that all is well with you.&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your prompt response and recommendation. I got the copy of SAS for Mixed models, and I'll perform the analysis soon.&lt;BR /&gt;&lt;BR /&gt;I'll keep you informed about my progress.&lt;BR /&gt;&lt;BR /&gt;Thanks for your time and support!&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Vira168</description>
    <pubDate>Fri, 02 Oct 2015 06:04:20 GMT</pubDate>
    <dc:creator>Vira168</dc:creator>
    <dc:date>2015-10-02T06:04:20Z</dc:date>
    <item>
      <title>Performance factorial of ANOVA in SAS 9.0</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/227860#M12034</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm Vira. I'm a beginner in SAS. I want to perform data analysis of my research in SAS 9.0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Firstly, let me briefly describe about my experimental design. The experiment laid out on split-plot design with four replications:&lt;/P&gt;&lt;P&gt;1. The experiment consists of two rice cultivation methods, conventional tillage (CT) compared with no-till system (NT)&lt;BR /&gt;2. The experiment designed to test on four rice growing sequences (RS): RS1: 1 rice/year, RS2: 2 rice/year ( 1st rice sown in April and harvested in early July. 2nd rice sown at the end of July and harvested in November) RS3: 2 rice/year (1st rice sown in July and harvested in November. 2nd rice sown in December and harvested in the March of the following year), and RS4: 3 rice/year.&lt;/P&gt;&lt;P&gt;3. Three levels of fertilization were applied to each treatment: low (F0), medium (F1), and high (F2).&lt;/P&gt;&lt;P&gt;4. I obtained soil samples from four depths of soil layer (cm): D1 (0-5), D2 (5-10), D3 (10-20), and D4 (20-40).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In summary, there are four factors and four replications in my experiment:&lt;/P&gt;&lt;P&gt;1. Tow cultivation method: CT &amp;amp; NT&lt;/P&gt;&lt;P&gt;2. Four rice growing sequences: RS1, RS2, RS3, and RS4&lt;/P&gt;&lt;P&gt;3. Three levels of fertilization: F0, F1, and F2&lt;/P&gt;&lt;P&gt;4. Four depths of soil layer: D1, D2, D3, and D4.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to be recommended the most appropriated procedure in SAS to perform the data analysis in my research, and its procedure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm waiting to hearing from all of you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advace for advice!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vira168&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2015 14:54:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/227860#M12034</guid>
      <dc:creator>Vira168</dc:creator>
      <dc:date>2015-09-30T14:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Performance factorial of ANOVA in SAS 9.0</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/227887#M12039</link>
      <description>&lt;P&gt;Do whatever you can to get a copy of SAS for Mixed Models, 2nd ed., by Littell et al. &amp;nbsp;It has lots of code for split-split plot models.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming the response is yield (MT/ha or something similar), then PROC MIXED is almost certainly where you want to go. &amp;nbsp;Some of your factors are internally correlated (soil depth) in a spatial sense, while the others are each a successive split of the plots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am thinking of something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed;
class cult_method seq fert depth rep;
model yield =cult_method|seq|fert|depth;
random intercept/subject=rep;
 /* very simple at first, but should probably include at least first order interactions as well */
lsmeans cult_method|seq|fert|depth/diff adjust=simulate(seed=1) adjdfe=row;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2015 18:38:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/227887#M12039</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-09-30T18:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Performance factorial of ANOVA in SAS 9.0</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/228166#M12058</link>
      <description>Dear SteveDenm,&lt;BR /&gt;&lt;BR /&gt;I hope that all is well with you.&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your prompt response and recommendation. I got the copy of SAS for Mixed models, and I'll perform the analysis soon.&lt;BR /&gt;&lt;BR /&gt;I'll keep you informed about my progress.&lt;BR /&gt;&lt;BR /&gt;Thanks for your time and support!&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Vira168</description>
      <pubDate>Fri, 02 Oct 2015 06:04:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Performance-factorial-of-ANOVA-in-SAS-9-0/m-p/228166#M12058</guid>
      <dc:creator>Vira168</dc:creator>
      <dc:date>2015-10-02T06:04:20Z</dc:date>
    </item>
  </channel>
</rss>

