<?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: Help analyzing Master's project - experimental design in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Help-analyzing-Master-s-project-experimental-design/m-p/91376#M257399</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Analysis isn't the hard part--getting the proper comparisons will be the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think of this as having two factors--irrigation rate and soil treatment.&amp;nbsp; Soil treatment has seven levels, three for bone meal, three for manure, and one control.&amp;nbsp; These treatments are subplots under the whole plot of irrigation rate.&amp;nbsp; You have three reps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A possible analysis is then (using SAS/STAT 12.1):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc mixed;&lt;/P&gt;&lt;P&gt;class rep rate trt;&lt;/P&gt;&lt;P&gt;model co2=rate trt rate*trt/ddfm=kr2;&lt;/P&gt;&lt;P&gt;random intercept/subject=rep;&lt;/P&gt;&lt;P&gt;lsmeans rate trt rate*trt;&lt;/P&gt;&lt;P&gt;lsmestimate &amp;lt;THIS WILL DEPEND ON THE COMPARISONS YOU WISH TO MAKE, AND WHETHER THERE IS AN INTERACTION BETWEEN RATE AND TRT.&amp;nbsp; MORE INFO ON THIS WILL MAKE IT EASIER TO CONSTRUCT THESE PARTICULAR COMPARISONS&amp;gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this gets you started.&amp;nbsp; For more on this kind of analysis, get a copy of SAS for Mixed Models, 2nd ed, by Littell et al., or Milliken's Analysis of Messy Data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2012 14:18:20 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2012-10-11T14:18:20Z</dc:date>
    <item>
      <title>Help analyzing Master's project - experimental design</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-analyzing-Master-s-project-experimental-design/m-p/91375#M257398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am a Master's student in Natural Resources and Environmental Management at the University of Hawaii at Manoa.&lt;/P&gt;&lt;P&gt;For my Master's project, I examined the effect of irrigation and nutrient management practices on soil CO2 emission under tropical conditions while growing sweet corn.&lt;/P&gt;&lt;P&gt;I believe the project was set up as a split split plot (possibly just a split plot?), and consisted of 3 irrigation rates, 2 organic amendments, 3 levels of each amendment, and a control.&lt;/P&gt;&lt;P&gt;Soil CO2 levels were measured twice a week for the duration of the growing season.&lt;/P&gt;&lt;P&gt;I am having trouble figuring out a way to analyze the data, due to each row only having one control, whereas each amendment had 3 levels.&amp;nbsp; I think that each row should have had 3 controls.&lt;/P&gt;&lt;P&gt;I have attached a file that shows the layout of my design.&lt;/P&gt;&lt;P&gt;If anyone knows how to analyze this experiment, I would be greatly appreciative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 17:59:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-analyzing-Master-s-project-experimental-design/m-p/91375#M257398</guid>
      <dc:creator>Adam1985</dc:creator>
      <dc:date>2012-10-10T17:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help analyzing Master's project - experimental design</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-analyzing-Master-s-project-experimental-design/m-p/91376#M257399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Analysis isn't the hard part--getting the proper comparisons will be the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think of this as having two factors--irrigation rate and soil treatment.&amp;nbsp; Soil treatment has seven levels, three for bone meal, three for manure, and one control.&amp;nbsp; These treatments are subplots under the whole plot of irrigation rate.&amp;nbsp; You have three reps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A possible analysis is then (using SAS/STAT 12.1):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc mixed;&lt;/P&gt;&lt;P&gt;class rep rate trt;&lt;/P&gt;&lt;P&gt;model co2=rate trt rate*trt/ddfm=kr2;&lt;/P&gt;&lt;P&gt;random intercept/subject=rep;&lt;/P&gt;&lt;P&gt;lsmeans rate trt rate*trt;&lt;/P&gt;&lt;P&gt;lsmestimate &amp;lt;THIS WILL DEPEND ON THE COMPARISONS YOU WISH TO MAKE, AND WHETHER THERE IS AN INTERACTION BETWEEN RATE AND TRT.&amp;nbsp; MORE INFO ON THIS WILL MAKE IT EASIER TO CONSTRUCT THESE PARTICULAR COMPARISONS&amp;gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this gets you started.&amp;nbsp; For more on this kind of analysis, get a copy of SAS for Mixed Models, 2nd ed, by Littell et al., or Milliken's Analysis of Messy Data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 14:18:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-analyzing-Master-s-project-experimental-design/m-p/91376#M257399</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2012-10-11T14:18:20Z</dc:date>
    </item>
  </channel>
</rss>

