<?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: Latin Square Design with two factors in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913776#M45364</link>
    <description>&lt;P&gt;Posting your results and providing more detail about your data (replications, specifically) will help us diagnose the problem&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jan 2024 13:17:57 GMT</pubDate>
    <dc:creator>StatsMan</dc:creator>
    <dc:date>2024-01-31T13:17:57Z</dc:date>
    <item>
      <title>Latin Square Design with two factors</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913459#M45333</link>
      <description>&lt;P&gt;Dear SAS Community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a Latin Square Design with two factors (4 treatments and 5 depths). I am not sure if my code is correct, so I would greatly appreciate if I could get some feedback. Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc glm; &lt;BR /&gt;class row col trt depth; &lt;BR /&gt;model lgRing=row col trt depth trt*depth; &lt;BR /&gt;lsmeans trt*depth / adjust=tukey lines;&lt;BR /&gt;contrast '1 v 2 when depth=1' trt 1 -1 0 0; &lt;BR /&gt;contrast '1 v 3 when depth=1' trt 1 0 -1 0; &lt;BR /&gt;contrast '1 v 4 when depth=1' trt 1 0 0 -1; &lt;BR /&gt;contrast '2 v 3 when depth=1' trt 0 1 -1 0; &lt;BR /&gt;contrast '2 v 4 when depth=1' trt 0 1 0 -1; &lt;BR /&gt;contrast '3 v 4 when depth=1' trt 0 0 1 -1; &lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 18:32:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913459#M45333</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2024-01-29T18:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Latin Square Design with two factors</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913577#M45337</link>
      <description>&lt;P&gt;You may need to specialize some error terms here. This&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_anova_sect029.htm" target="_self"&gt;example&lt;/A&gt;&amp;nbsp;in the GLM doc will get you started. PROC MIXED is a good alternative to GLM in these situations, too.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 13:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913577#M45337</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2024-01-30T13:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Latin Square Design with two factors</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913622#M45353</link>
      <description>&lt;P&gt;Thank you very much for your feedback StatsMan,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example was very helpful. In my case I have a latin square split block design with depth as the strip factor.&lt;/P&gt;
&lt;P&gt;I tried using proc mixed but I didn't get any F values. Any idea of what it is wrong?&lt;/P&gt;
&lt;P&gt;proc mixed;&lt;BR /&gt;class row col trt depth;&lt;BR /&gt;model lgRing= row col trt col*trt row*col*trt depth row*depth col*depth trt*depth col*trt*depth row*col*trt*depth/ddfm=satterthwaite;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:01:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913622#M45353</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2024-01-30T17:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Latin Square Design with two factors</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913776#M45364</link>
      <description>&lt;P&gt;Posting your results and providing more detail about your data (replications, specifically) will help us diagnose the problem&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 13:17:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/913776#M45364</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2024-01-31T13:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Latin Square Design with two factors</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/914049#M45375</link>
      <description>&lt;P&gt;Thank you StatsMan for your reply. I attached the SAS code I am using. I have four replications (blocks) per treatment. I have also attached a file of the map.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 17:33:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Latin-Square-Design-with-two-factors/m-p/914049#M45375</guid>
      <dc:creator>palolix</dc:creator>
      <dc:date>2024-02-01T17:33:05Z</dc:date>
    </item>
  </channel>
</rss>

