

pairs {base}                                 R Documentation

_S_c_a_t_t_e_r_p_l_o_t _M_a_t_r_i_c_e_s

_D_e_s_c_r_i_p_t_i_o_n_:

     A matrix of scatterplots is produced.

_U_s_a_g_e_:

     pairs(x, ...)
     pairs.default(x, labels = dimnames(x)[[2]], panel = points, ...)

_A_r_g_u_m_e_n_t_s_:

       x: the coordinates of points given as columns of a
          matrix.

  labels: the names of the variables.

   panel: `function(x,y,...)' which is used to plot the con-
          tents of each panel of the display.

     ...: graphical parameters can be given as arguments to
          `plot'.

_D_e_t_a_i_l_s_:

     The ijth scatterplot contains `x[,i]' plotted against
     `x[,j]'.

     The graphical parameters `pch' and `col' can be used to
     specify a vector of plotting symbols and colors to be
     used in the plots.

_E_x_a_m_p_l_e_s_:

     data(USJudgeRatings)
     pairs(USJudgeRatings)

