coplot(formula, data, given.values, panel = points, rows, columns, column.row, show.given = T, add = F, xlab, ylab, xlim, ylim, ...)
Graphical parameters may also be supplied as arguments to this function (see par). The arguments xlab and ylab are as for other graphics functions, except that the former is a character vector of labels for predictors. If the elements have names, they are matched to the names in formula; if not, the elements are assigned, in order, according to the order in which they appear in formula. If missing, the names of the predictors in formula are used. The arguments xlim and ylim are axis limits as in other graphics functions.
# the following makes a coplot of NOx against C given E # with smoothings of the scatterplots on the dependence panels: E.intervals <- co.intervals(ethanol$E, 16, 0.25) coplot(NOx ~ C | E, given.values = E.intervals, data = ethanol, panel = function(x, y) panel.smooth(x, y, span = 1, degree = 1))