I am executing a 1 factor(tool) experiment with 2 treatments and 2 block variables (participant and process). In other words, a 2x2 Latin square.
One of the block variables is the participants. As my sample has 8 participants, I have 4 2x2 latin squares.
To do the analysis of just 1 Latin square, I am using ANOVA through the following commands in R:
result = aov(time~participant+process+tool);
print(summary(result));
My questions is: How can I execute an ANOVA test with replicated latin squares in R?