<?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: Split block with subsampling and no replication of blocks in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738582#M35872</link>
    <description>&lt;P&gt;Can you send us your data set?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 May 2021 13:40:20 GMT</pubDate>
    <dc:creator>jiltao</dc:creator>
    <dc:date>2021-05-03T13:40:20Z</dc:date>
    <item>
      <title>Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738280#M35856</link>
      <description>&lt;P&gt;I have a researcher who is conducting testing of area-wide treatments (done on large swaths of land, not easy to apply to small areas and not easy to replicate). There are two factors, factor A with three treatment levels (2 trt and 1 control) and factor B with two levels. The physical layout is like a split block (or strip plot), with each level of A applied to one of three vertical strips and each level of B applied to one of two horizontal strips (so each is like a whole plot factor), and the six subplots that are created by the criss-cross design will each have one level of the A*B interaction (so six combined treatment levels, each in one of six subplots). The outcome variable will be counts of insects, so likely Poisson unless the counts are large enough to be approximately normal. The counts will come from monitoring at 30 properties in each of the six subplots, so 180 observations total. I think the 30 properties are subsamples, not replicates, and the entire setup is established only once; there are no replicate blocks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the design were repeated in multiple blocks, I think the appropriate code would be&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data = dat;
class block A&amp;nbsp; B;
model response = A B A*B / dist= poisson link = log;
random block block*A block*B;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But with no replicate blocks, I won't have block in the model, and I don't think I can estimate the A*B interaction without the replicates. I do, however, have the subsampling. I'm not sure how to proceed. The best I could think of was to add a random effect for the subplots to account for the subsampling and skip the interaction effect (which is essentially the same as the subplot though).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data = dat;
class subplot A&amp;nbsp; B;
model response = A B / dist= poisson link = log;
random subplot;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: I attached a csv file, with subplot 1-6, factor A with 3 levels, factor B with 2 levels, properties 1-30 in each subplot, and simulated counts as response.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA dat;
    INFILE 'ExampleData.csv'
   	DSD MISSOVER PAD firstobs = 2;
	INPUT subplot $ A $ B $ property $ response;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 03 May 2021 15:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738280#M35856</guid>
      <dc:creator>ward77</dc:creator>
      <dc:date>2021-05-03T15:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738565#M35871</link>
      <description>&lt;P&gt;I don't think you have any random effects in this design - you have counts (dependent variable) in six treatment combinations.&amp;nbsp; The subplot is the experimental unit.&amp;nbsp; The only thing you might do is build in some heterogeneity of variance with a RANDOM _RESIDUAL_ statement or with a GROUP= option in the LSMEANS, but without any replication of the experimental unit, those two things may not converge.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the end, your model is response = A B; The interaction serves as the error term.&amp;nbsp; To accommodate the Poisson, you could use either GLIMMIX or GENMOD.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 12:29:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738565#M35871</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-05-03T12:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738582#M35872</link>
      <description>&lt;P&gt;Can you send us your data set?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 13:40:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738582#M35872</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2021-05-03T13:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738605#M35873</link>
      <description>&lt;P&gt;I added a simulated dataset; I don't have actual data yet.&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 14:37:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738605#M35873</guid>
      <dc:creator>ward77</dc:creator>
      <dc:date>2021-05-03T14:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738611#M35874</link>
      <description>&lt;P&gt;Steve, thank you for your reply. Don't I need to indicate that I have subsampling from the six EU (30 properties within each subplot)?&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 14:58:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738611#M35874</guid>
      <dc:creator>ward77</dc:creator>
      <dc:date>2021-05-03T14:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738615#M35876</link>
      <description>&lt;P&gt;The subplot and the A*B interaction are confounded. So you either model the A*B interaction and do not model any random effects, or model the SUBPLOT as the random effect but no A*B interaction, as what you have already done. I assume the properties are nested within the subplot, correct? If so, I cannot think of other ways to model this data.&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 15:17:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738615#M35876</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2021-05-03T15:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Split block with subsampling and no replication of blocks</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738620#M35879</link>
      <description>&lt;P&gt;Thank you for your response. Yes, the properties are nested within the subplots and the interaction is confounded with subplot.&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;I wasn't sure if adding the subplot as a random effect was the appropriate thing to do, but I don't know how else I would specify the subsampling. Those measurements should be correlated because they were taken from the same subplot, not 30 replications of the experiment. I'm sure the A*B interaction would be of interest but would it be appropriate to estimate it without true replication? If I estimate the interaction instead of the random effect for subplot, would that be the same as treating those subsamples as true replicates?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 15:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Split-block-with-subsampling-and-no-replication-of-blocks/m-p/738620#M35879</guid>
      <dc:creator>ward77</dc:creator>
      <dc:date>2021-05-03T15:35:22Z</dc:date>
    </item>
  </channel>
</rss>

