Closed nicholasjhorton closed 4 years ago
Looks like it is a holdover from moving to use broom which uses .std.resid
rather than .resid
. I see two places where we didn't update the name.
Easy to fix:
suppressPackageStartupMessages(library(mosaic))
mod <- lm(log(mpg) ~ wt, data = mtcars)
mplot(mod, which = 1)
#> `geom_smooth()` using formula 'y ~ x'
Created on 2020-08-29 by the reprex package (v0.3.0)
Is this a known issue?
Created on 2020-08-28 by the reprex package (v0.3.0)
Same problem if I use
I()
.Created on 2020-08-28 by the reprex package (v0.3.0)