<?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 SAS code in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230232#M12142</link>
    <description>&lt;P&gt;What is the code for simple lattice design over years and locations? Both location and year are random.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Oct 2015 06:17:34 GMT</pubDate>
    <dc:creator>Sepehr</dc:creator>
    <dc:date>2015-10-16T06:17:34Z</dc:date>
    <item>
      <title>SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230232#M12142</link>
      <description>&lt;P&gt;What is the code for simple lattice design over years and locations? Both location and year are random.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 06:17:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230232#M12142</guid>
      <dc:creator>Sepehr</dc:creator>
      <dc:date>2015-10-16T06:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230235#M12143</link>
      <description>&lt;P&gt;PROC LATTICE?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 07:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230235#M12143</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-10-16T07:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230271#M12144</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/58326"&gt;@Sepehr﻿&lt;/a&gt;,Thanks for your question. I've moved your question to this topical forum on Statistical Procedures as more experts will be able to help here. &amp;nbsp;H&lt;SPAN&gt;ope this is the right forum although someone will advise if not... Have a good day,&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt;Best,&lt;BR /&gt;&lt;BR /&gt;Lainie&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 13:48:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230271#M12144</guid>
      <dc:creator>LainieH</dc:creator>
      <dc:date>2015-10-16T13:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230275#M12146</link>
      <description>&lt;P&gt;You might want to browse this &lt;A href="http://www.ats.ucla.edu/stat/sas/library/SASExpDes_os.htm" target="_self"&gt;web page that includes many standard experimental designs&lt;/A&gt;&amp;nbsp;and SAS code to analyze them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 13:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230275#M12146</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2015-10-16T13:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230291#M12151</link>
      <description>&lt;P&gt;&lt;STRONG&gt;As far as know the code that I am looking for is something like the following code, but I'm not 100% positve if this code is the correct one!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;mixed&lt;/STRONG&gt; method=type3;&amp;nbsp;&lt;SPAN&gt;class YR L&amp;nbsp;BLOCK TRT;&amp;nbsp;model yield=TRT; random BLOCK TRT&amp;nbsp;L YR*L BLOCK*YR*L YR*TRT L*TRT YR*L*TRT;&amp;nbsp;&lt;/SPAN&gt;lsmeans TRT/diff;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 14:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230291#M12151</guid>
      <dc:creator>Sepehr</dc:creator>
      <dc:date>2015-10-16T14:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230338#M12153</link>
      <description>YEAH! I THINK I FIGURED OUT THE ANSWER:&lt;BR /&gt;&lt;BR /&gt;data;&lt;BR /&gt;input YEARS LOCATIONS BLOCKS REP TREATMENT yield ;&lt;BR /&gt;datalines;&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;PROC MIXED;CLASS YEARS LOCATIONS REP BLOCKS TREATMENT;&lt;BR /&gt;MODEL yield=TREATMENT;&lt;BR /&gt;RANDOM YEARS LOCATIONS YEARS*LOCATIONS REP*YEARS*LOCATIONS BLOCKS*REP*YEARS*LOCATIONS TREATMENT*YEARS TREATMENT*LOCATIONS TREATMENT*YEARS*LOCATIONS;lsmeans TREATMENT/diff;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Oct 2015 18:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230338#M12153</guid>
      <dc:creator>Sepehr</dc:creator>
      <dc:date>2015-10-16T18:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230339#M12154</link>
      <description>I'm looking forward to hearing your comments and suggestions.</description>
      <pubDate>Fri, 16 Oct 2015 18:14:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-code/m-p/230339#M12154</guid>
      <dc:creator>Sepehr</dc:creator>
      <dc:date>2015-10-16T18:14:47Z</dc:date>
    </item>
  </channel>
</rss>

