home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / pairs < prev    next >
Encoding:
Text File  |  1997-04-23  |  846 b   |  31 lines

  1.     
  2.     _S_c_a_t_t_e_r_p_l_o_t _M_a_t_r_i_c_e_s
  3.     
  4.          pairs(x, labels=dimnames(x)[[2]], panel=points, ...)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.                x : the coordinates of points given as columns of
  9.                    a matrix.
  10.     
  11.           labels : the names of the variables.
  12.     
  13.            panel : the function which is used to plot the con-
  14.                    tents of each panel of the display.
  15.     
  16.              ... : graphical parameters can be given as argu-
  17.                    ments to plot.
  18.     
  19.     _D_e_s_c_r_i_p_t_i_o_n:
  20.     
  21.          A matrix of scatterplots is produced.  The ijth scat-
  22.          terplot contains x[,i] plotted against x[,j].  The
  23.          graphical parameters pch and col can be used to specify
  24.          a vector of plotting symbols and colors to be used in
  25.          the plots.
  26.     
  27.     _E_x_a_m_p_l_e_s:
  28.     
  29.          pairs(judges)
  30.     
  31.