This function is generic (see Methods); method functions can be written to handle specific classes of data. Classes which already have methods for this function include: data.frame, formula. The default method handles matrices.
pairs(x, labels=dimnames(x)[[2]], ...)
General graphical parameters (e.g., col, cex) may also be supplied as arguments to this function (see par).
pairs(longley.x) pairs(ozone.data, panel=function(x,y) { points(x,y); lines(lowess(x,y))} )