Using autoplot from ggfortify to create diagnostic plots:
library(ggplot2)
library(ggfortify)
mod <- lm(Petal.Width ~ Petal.Length, data = iris)
autoplot(mod, label.size = 3)
Is it possible to change the axis and plot titles (easily)? I'd like to translate them.
