2-way anova on unbalanced dataset

后端 未结 1 2011
野性不改
野性不改 2021-02-06 07:00

Is aov appropriate for unbalanced datasets. According to help ...provides a wrapper to lm for fitting linear models to balanced or unbalanced experimental des

相关标签:
1条回答
  • 2021-02-06 07:53

    Function anova (or summary.aov) will give you the so called type I (or sequential) sum of squares. To get type III sum of squares, you can use the Anova function from library car with parameter type="III". The difference between these two approaches in unbalanced datasets (and also sample R code to produce both tables) is presented in detail here.

    0 讨论(0)
提交回复
热议问题