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 / stripplot < prev    next >
Encoding:
Text File  |  1997-04-23  |  2.0 KB  |  52 lines

  1.     
  2.     _1-_D _S_c_a_t_t_e_r _P_l_o_t_s
  3.     
  4.          stripplot(x, method="overplot", jitter=0.1, offset=1/3,
  5.                  vertical=FALSE, group.names)
  6.     
  7.     _A_r_g_u_m_e_n_t_s:
  8.     
  9.                x : the data from which the plots are to be pro-
  10.                    duced.  The data can be specified as a single
  11.                    vector, or as list of vectors, each
  12.                    corresponding to a component plot.  Alterna-
  13.                    tively a symbolic specification of the form x
  14.                    ~ g can be given, indicating the the observa-
  15.                    tions in the vector x are to be grouped
  16.                    according to the levels of the factor g.  NAs
  17.                    are allowed in the data.
  18.     
  19.           method : the method to be used to separate coincident
  20.                    points.  The default method "overplot" causes
  21.                    such points to be overplotted, but it is also
  22.                    possible to specify "jitter" to jitter the
  23.                    points, or "stack" have coincident points
  24.                    stacked.  The last method only makes sense
  25.                    for very granular data.
  26.     
  27.           jitter : when jittering is used, jitter gives the
  28.                    amount of jittering applied.
  29.     
  30.           offset : when stacking is used, points are stacked
  31.                    this many line-heights (symbol widths) apart.
  32.     
  33.         vertical : when vertical is TRUE the plots are drawn
  34.                    vertically rather than the default horizon-
  35.                    tal.
  36.     
  37.      group.names : group labels which will be printed alongside
  38.                    (or underneath) each plot.
  39.     
  40.               Graphical parameters can also be specified as
  41.               arguments.
  42.     
  43.     _D_e_s_c_r_i_p_t_i_o_n:
  44.     
  45.          stripplot produces one dimensional scatter plots (or
  46.          dot plots) of the given data.  These plots are are good
  47.          alternative to boxplots when sample sizes are small.
  48.     
  49.          Extensive examples of the use of this kind of plot can
  50.          be found in Box, Hunter and Hunter or Seber and Wild.
  51.     
  52.