plot.preplot.loess(object, xlab = object$xlab, ylab = object$ylab, which.plots = object$which.plots, rows, columns, show.given = TRUE, ...)
Graphical parameters may also be supplied as arguments to this function (see par).
This function graphs the fitted surface of a local regression model for one, two or three predictors. For one predictor, a curve is graphed against the predictor. For two or three predictors, a coplot is made against each predictor, conditional on the others. Each dependence panel of a coplot shows a curve that is a slice through the surface and is based on an evaluation for evaluaton equally-spaced values of the predictor ranging between values specified by ranges; in addition, confidence intervals at confidence equally-spaced values over the same range are shown. These arguments are specified during the creation of the preplot object by preplot.loess(). Normally, the user will want to make all coplots, but coplots against just certain predictors can be made by using the argument which.plots.
air.m <- loess(ozone ~ radiation, data = air) air.m.pp <- preplot(air.m, given = 5, confidence = 7) plot(air.m.pp, which.plots = "radiation")