Variance Components Model in R

Hi,

I want to compare the four different groups, if they have equal variances, I could use ANOVA. However, the groups have unequal variance, I need to model the variances separately for each group instead of using the pooled variance. I know how to do that in SAS:
The code is:

Proc Mixed Data=Temp Plots=All;
Class group;
Model Y= Group/ DDFM=Satterth Solution outpm=Resid Residual;
repeated / Group=group;
LSMeans group/diff=control('' ') adjust = dunnett pdiff CL AdjDFE=Row ;
Run;

How can I do it in R?

Thanks!

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.