TITLE(pairs @@ Scatterplot Matrices)
USAGE(
pairs(x, labels=dimnames(x)[[2]], panel=points, DOTS)
)
ALIAS(pairs)
ARGUMENTS(
ARG(x @@ the coordinates of points given as columns of a matrix.)
ARG(labels @@ the names of the variables.)
ARG(panel @@ the function which is used to plot the contents of
each panel of the display.)
ARG(DOTS @@ graphical parameters can be given as arguments to LANG(plot).)
)
DESCRIPTION(
A matrix of scatterplots is produced.
The EQN(ij)th scatterplot contains LANG(x[,i]) plotted against
LANG(x[,j]).
The graphical parameters LANG(pch) and LANG(col) can be used to specify
a vector of plotting symbols and colors to be used in the plots.
)
EXAMPLES(
data(judges)
pairs(judges)
)
