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 / boxplot.stats < prev    next >
Encoding:
Text File  |  1997-04-23  |  1.4 KB  |  46 lines

  1.     
  2.     _B_o_x _P_l_o_t _S_t_a_t_i_s_t_i_c_s
  3.     
  4.          boxplot.stats(x, coef)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.                x : a numeric vector for which the boxplot will
  9.                    be constructed (NAs are allowed).
  10.     
  11.             coef : this determines how far the plot ``whiskers''
  12.                    extend out from the box.  If coef is posi-
  13.                    tive, the whiskers extend to the most extreme
  14.                    data point which is no more than coef times
  15.                    the interquartile coef from the box.  A value
  16.                    of zero causes the whiskers to extend to the
  17.                    data extremes.
  18.     
  19.     _V_a_l_u_e_s:
  20.     
  21.          This function is typically is called by boxplot to
  22.          gather the statistics necessary for producing box
  23.          plots, but may be invoked separately.  The value it
  24.          returns is a list with named components as follows:
  25.     
  26.       stats : a vector containing the extreme of the lower
  27.               whisker, the lower ``hinge'', the median, the
  28.               upper ``hinge'' and the extreme of the upper
  29.               whisker.
  30.     
  31.           n : the number of observations in the sample.
  32.     
  33.        conf : the lower and upper extremes of the ``notch''.
  34.     
  35.         out : the values of any data points which lie beyond the
  36.               extremes of the whiskers.
  37.     
  38.     _S_e_e _A_l_s_o:
  39.     
  40.          boxplot, bxp.
  41.     
  42.     _E_x_a_m_p_l_e_s:
  43.     
  44.          boxplot.stats(1:100)
  45.     
  46.