I am doing an ANCOVA in R with one continuous variable (DENSITY) and one factor (SEASON). When I check for the model assumptions I get a plot named: "Constant Leverage: Residuals vs Factor Levels" instead of the "Residuals vs Leverage" plot.
limp.mod <- lm(EGGS~DENSITY*SEASON, data=limp)
autoplot(limp.mod,smooth.colour = NA, which=5)
How can I get the "Residuals vs Leverage" plot? Why does the exact same code in my textbook give another autoplot() output?
Thanks in advance for your help!
Without a reproducible example, I will first create a model based on the built-in data set
iris
.As for the plot,
autoplot
is a generic function. Packageggfortify
includes methods for objects of class"lm"
, among others.From
help("autoplot.lm")
:The default is
which = c(1, 2, 3, 5)
. Trying all 6 values for the argument, we see that the wanted graph is not one of them. So a custom graph needs to be built.The residuals and the leverage values can be obtained from
stats::resid
and fromstats::hatvalues
, respectively.