You are on page 1of 1

Regression Model and Summary

model.car<-lm(MPG~VOL+HP+SP+WT)

summary(model.car)

Deletion Diagnostics

influence.measures(model.car)

influenceIndexPlot(model.car, id.n=3) # Index Plots of the influence


measures

Diagnostic Plots:
Residual Plots, QQ-Plos, Std. Residuals vs Fitted

plot(model.car)

Residuals vs Regressors

residualPlots(model.car)

Added Variable Plots

avPlots(model.car, id.n=2, id.cex=0.7)

QQ plots of studentized residuals

qqPlot(model.car, id.n=5)

You might also like