residPlot: Fitted values versus residuals plot

View source: R/residPlot.R

residPlotR Documentation

Fitted values versus residuals plot

Description

Plots a scatter plot for the variables of the residuals and fitted values from the linear model, lmfit. A lowess smooth line for the underlying trend, as well as one standard deviation error bounds for the scatter about this trend, are added to this scatter plot. A test for a quadratic relationship between the residuals and the fitted values is also computed.

Usage

residPlot(lmfit, f = 0.5)

Arguments

lmfit

an lm object, i.e. the output from lm.

f

the smoother span. This gives the proportion of points in the plot which influence the smooth at each value. Larger values give more smoothness.

Value

Returns the plot.

Note

This function is deprecated. It will be removed in future versions of the package.

See Also

trendscatter

Examples


# Peruvian Indians data
data(peru.df)
fit=lm(BP~age+years+weight+height, data = peru.df)
residPlot(fit)


s20x documentation built on Aug. 21, 2023, 5:07 p.m.