๐งช Experimental: Interactive webR examples are a new feature. Loading may take a moment, and the package version might differ from this documentation.
Interactive Example Available
Examples
# Load the datadata(residual_surrealism)# Fit a modelmodel=lm(V1~., residual_surrealism)# Graph the residuals vs. fitted valuesplot(fitted(model),resid(model))# Add a line at y = 0abline(0, 0, col ="red")