<?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: Randomized Complete Block Design in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556377#M154999</link>
    <description>The overall F-Test shows a p-value of 0.0648 which is insignificant. However, the p-value for the treatment shows a significant difference while block is insignificant. Can I still go ahead and find which treatments are different even though the F-Test suggest otherwise?&lt;BR /&gt;</description>
    <pubDate>Mon, 06 May 2019 10:56:02 GMT</pubDate>
    <dc:creator>JUMMY</dc:creator>
    <dc:date>2019-05-06T10:56:02Z</dc:date>
    <item>
      <title>Randomized Complete Block Design</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556371#M154996</link>
      <description>&lt;P&gt;I have a randomized complete design problem where&amp;nbsp;Six litters of hamsters with 2 hamsters from each litter (considered blocks) were available for an experiment examining differences between length of day light on the NI enzyme level (ENZYME). The treatments (DAYLENGTH) of short (1) and long (2) are randomly assigned within litter (LITTERS). How do I test for&amp;nbsp;differences in treatments taking litter into account&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure if my code is set up the code properly to answer the question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input litter daylength enzyme;
datalines;

1 short 2.1 
2 short 1.8 
3 short 1.4 
4 short 1.2 
5 short 1.9 
6 short 2.4 
1 long 2.6 
2 long 2.2 
3 long 2.4 
4 long 1.7 
5 long 2.9 
6 long 2.3 
;
run;


proc glm data=have plots=(meanplot(connect));
  class daylength litter;
  model enzyme=daylength litter;
  means daylength / tukey;
  lsmeans daylength / stderr pdiff adjust=tukey;
title 'RCB ANOVA';
run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Does the above code answer the question on testing the differences in treatments while taking BLOCKS into account?&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2019 10:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556371#M154996</guid>
      <dc:creator>JUMMY</dc:creator>
      <dc:date>2019-05-06T10:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Randomized Complete Block Design</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556374#M154997</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226541"&gt;@JUMMY&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have a randomized complete design problem where&amp;nbsp;Six litters of hamsters with 2 hamsters from each litter (considered blocks) were available for an experiment examining differences between length of day light on the NI enzyme level (ENZYME). The treatments (DAYLENGTH) of short (1) and long (2) are randomly assigned within litter (LITTERS). How do I test for&amp;nbsp;differences in treatments taking litter into account&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure if my code is set up the code properly to answer the question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input litter daylength enzyme;
datalines;

1 short 2.1 
2 short 1.8 
3 short 1.4 
4 short 1.2 
5 short 1.9 
6 short 2.4 
1 long 2.6 
2 long 2.2 
3 long 2.4 
4 long 1.7 
5 long 2.9 
6 long 2.3 
;
run;


proc glm data=have plots=(meanplot(connect));
  class daylength litter;
  model enzyme=daylength litter;
  means daylength / tukey;
  lsmeans daylength / stderr pdiff adjust=tukey;
title 'RCB ANOVA';
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Does the above code answer the question on testing the differences in treatments while taking BLOCKS into account?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes.&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2019 10:39:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556374#M154997</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-05-06T10:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Randomized Complete Block Design</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556377#M154999</link>
      <description>The overall F-Test shows a p-value of 0.0648 which is insignificant. However, the p-value for the treatment shows a significant difference while block is insignificant. Can I still go ahead and find which treatments are different even though the F-Test suggest otherwise?&lt;BR /&gt;</description>
      <pubDate>Mon, 06 May 2019 10:56:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Randomized-Complete-Block-Design/m-p/556377#M154999</guid>
      <dc:creator>JUMMY</dc:creator>
      <dc:date>2019-05-06T10:56:02Z</dc:date>
    </item>
  </channel>
</rss>

