-
Notifications
You must be signed in to change notification settings - Fork 2
error in exercise 5.6.1 #9
Copy link
Copy link
Open
Description
When visualising the model, it displays the original values, not the modelled values:
ggplot(augment(lme_yield), aes(x = irrigation, y = yield, colour = variety)) +
geom_point(position = position_dodge(width = 0.5))
should be
ggplot(augment(lme_yield), aes(x = irrigation, y = .fitted, colour = variety)) +
geom_point(position = position_dodge(width = 0.5))
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels