Displaying 1 result from an estimated 1 matches for "marcelo_laia".
2009 Nov 08
0
Repeated measures on a factorial unbalanced in a blocks with split-plot design
...ination? How is the
influence of hormone? And interactions?
I try this approach, but I don't know how I could handle the repeated
measures here! Nor if this approach is correct for me.
Here is a subset of my data
http://www.divshare.com/download/9241231-428
> dados <- read.table("marcelo_laia.txt",sep="\t",dec=",",header=TRUE)
> summary(dados)
> dados.model <- aov(Diametro ~ Block +
+ ? ? ? ? ? ? ? ? ? ? Hormone + Error(Block/Hormone) +
+ ? ? ? ? ? ? ? ? ? ? Treatment + Treatment:Hormone +
+ ? ? ? ? ? ? ? ? ? ? Hormone/Block/Treatment,
+ ? ? ? ? ? ? ? ?...