requesting additional info for permute::how() in split-plot design #31
Replies: 3 comments 9 replies
-
Can you explain the terminology on the PDF map/diagram you linked to. I only see |
Beta Was this translation helpful? Give feedback.
-
(You should use I need to think a little more about this (I'm rusty on some of the details of design-based permutations as I don't really use this stuff now in my research), but… …in {permute},
In your case, one option for a model/test would be to investigate the effects of your main treatment while accounting for (partialling out) the effect of
Either way works and in this instance for this specific test (model + permutation test combination) but the Instead, if you wanted to test the effect of the how(within = Within(type = "none"), plots = Plots(strata = block, type = "free")) where we are saying to keep the order of samples within blocks (plots) fixed while shuffling the groups of samples (groups at the plot/block level) randomly. This comes with the requirement that your plots contain the same number of observations. Does that answer your main query? The extra thinking I mentioned above would be around the specific setting you present. |
Beta Was this translation helpful? Give feedback.
-
@gavinsimpson I only wanted to say that ## apply 'strata', but only if possible: ignore silently other cases
if (!missing(strata) && !is.null(strata)) {
if (inherits(perm, "how") && is.null(getBlocks(perm)))
setBlocks(perm) <- strata
} So |
Beta Was this translation helpful? Give feedback.
-
Thanks for starting this discussion - having people post questions about packages on the repository itself instead of more generic venues like Stack Overflow or less efficient methods like email seems like a much better way for people to hopefully get questions answered.
I'm Katharine Hogan, a PhD candidate in natural resources studying prairie restoration community dynamics. I am struggling with correctly designing the permutation structure on a vegan::adonis2() analysis of a prairie restoration experiment. I'm still unsure after reading the permute::how() documentation and scouring the web for tutorials/examples, and am getting some model results that make me think I'm not accounting for the structure of the experiment correctly.
A very brief overview of the experimental design: It's a 24-ac study, with 24 ca. 1 ac "plots" (6 data measurement points per plot, but that's not crucial to my question). The experiment is a split-plot design with seeding treatments (3-factor) nested within haying management treatments (2-factor) for 6 unique treatment groups (4 reps each for 4x6 = 24 plots). It also has a repeated measures element because I sampled biweekly from late spring to early fall for 3 years (mean of 6 times per year). The 3 seeding treatments (control, low diversity, and high diversity) are randomized within 8 spatial "blocks" of 3 plots each. The haying treatment had to be applied at the block level (4 hayed blocks and 4 unhayed blocks, within which seeding treatments are spatially random), so there is some potential confounding (I believe statistically between management and block) if I don't account for it correctly. I am attaching a schematic my co-advisor made of the experiment for the visual thinkers out there.
plotsGREXHayed2019.pdf
I think my main point of confusion with designing the permutation structure is just terminology. I have been using one set of terms to refer to the different levels of my experiment for years, and am unsure they are analagous to how() - in particular, given my general reading on split-plot experiments, I'm not sure the implicit definitions of blocks and plots in how() are the same as I am used to using. I am also confused why there is a within-plot argument in how(), as I can't think of a case when that would be different from what's already covered in plots (that may just be lack of imagination on my part). Would someone be able to provide a more detailed definition of those terms and how they pertain to the different parts of a split-plot experiment? I can provide more details if helpful. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions