March 2019
Beginner to intermediate
448 pages
13h 14m
English
We will work with the PlantGrowth dataset, which is already included in R. It contains the weights of certain plants and a variable flagging whether the plant is in the control, treatment1, or treatment2 groups.
library(robust) r = PlantGrowth d = aov(weight ~ group,data=r ) summary(d) The following screenshot shows the classical ANOVA table for the standard model:

Then, type the following code:
plot(d, 2)
The following ...
Read now
Unlock full access