Displaying 1 result from an estimated 1 matches for "nosema".
2011 Oct 27
1
Proc Mixed to R
...y3;
y=y1; date=*1*; output;
y=y2; date=*2*; output;
y=y3; date=*3*; output;
datalines;
1 3 6725 6750 925
2 8 6950 5800 11275
3 4 4200 6100 6475
Procedure:
*proc* *mixed* data=Nosema method=ml covtest;
class colony tmt;
model y=tmt date tmt*date / s;
repeated / type=un subject=colony;
random colony;
lsmeans tmt/cl adjust=tukey;
I am able to get something close by running aov on it, even closer by using
Anova{car...