quantile                package:stats                R Documentation

_S_a_m_p_l_e _Q_u_a_n_t_i_l_e_s

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

     The generic function 'quantile' produces sample quantiles
     corresponding to the given probabilities. The smallest observation
     corresponds to a probability of 0 and the largest to a probability
     of 1.

_U_s_a_g_e:

     quantile(x, ...)

     ## Default S3 method:
     quantile(x, probs = seq(0, 1, 0.25), na.rm = FALSE,
              names = TRUE, ...)

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

       x: numeric vectors whose sample quantiles are wanted.

   probs: numeric vector with values in [0,1].

   na.rm: logical; if true, any 'NA' and 'NaN''s are removed from 'x'
          before the quantiles are computed.

   names: logical; if true, the result has a 'names' attribute.  Set to
          'FALSE' for speedup with many 'probs'.

     ...: further arguments passed to or from other methods.

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

     A vector of length 'length(probs)' is returned; if 'names = TRUE',
     it has a 'names' attribute.

     'quantile(x,p)' as a function of 'p' linearly interpolates the
     points ( (i-1)/(n-1), ox[i] ), where 'ox <- sort(x)' and 'n <-
     length(x)'.

     This gives 'quantile(x, p) == (1-f)*ox[i] + f*ox[i+1]', where 'r
     <- 1 + (n-1)*p', 'i <- floor(r)', 'f <- r - i' _and_ 'ox[n+1] := 
     ox[n]'.

     'NA' and 'NaN' values in 'probs' are propagated to the result.

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

_S_e_e _A_l_s_o:

     'ecdf' (in the 'stats' package) for empirical distributions of
     which 'quantile' is the "inverse"; 'boxplot.stats' and 'fivenum'
     for computing "versions" of quartiles, etc.

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

     quantile(x <- rnorm(1001))# Extremes & Quartiles by default
     quantile(x,  probs=c(.1,.5,1,2,5,10,50, NA)/100)

