powered by
An example of a simple useful panel function to be used as argument in e.g., coplot or pairs.
panel
coplot
pairs
panel.smooth(x, y, col = par("col"), bg = NA, pch = par("pch"), cex = 1, col.smooth = "red", span = 2/3, iter = 3, …)
numeric vectors of the same length
numeric or character codes for the color(s), point type and size of points; see also par.
points
par
color to be used by lines for drawing the smooths.
lines
smoothing parameter f for lowess, see there.
f
lowess
number of robustness iterations for lowess.
further arguments to lines.
coplot and pairs where panel.smooth is typically used; lowess which does the smoothing.
panel.smooth
# NOT RUN { pairs(swiss, panel = panel.smooth, pch = ".") # emphasize the smooths pairs(swiss, panel = panel.smooth, lwd = 2, cex = 1.5, col = "blue") # hmm... # }
Run the code above in your browser using DataLab