Studentized residual plot
Graph for identifying outliers.
ols_plot_resid_stud(model, print_plot = TRUE)
model |
An object of class |
print_plot |
logical; if |
Studentized deleted residuals (or externally studentized residuals) is the deleted residual divided by its estimated standard deviation. Studentized residuals are going to be more effective for detecting outlying Y observations than standardized residuals. If an observation has an externally studentized residual that is larger than 3 (in absolute value) we can call it an outlier.
ols_plot_resid_stud
returns a list containing the
following components:
outliers |
a |
for classifying an observation as an outlier
threshold |
|
ols_srsd_plot()
has been deprecated. Instead use ols_plot_resid_stud()
.
[ols_plot_resid_stand()]
model <- lm(mpg ~ disp + hp + wt, data = mtcars) ols_plot_resid_stud(model)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.