Exponential              package:stats              R Documentation

_T_h_e _E_x_p_o_n_e_n_t_i_a_l _D_i_s_t_r_i_b_u_t_i_o_n

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

     Density, distribution function, quantile function and random
     generation for the exponential distribution with rate 'rate'
     (i.e., mean '1/rate').

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

     dexp(x, rate = 1, log = FALSE)
     pexp(q, rate = 1, lower.tail = TRUE, log.p = FALSE)
     qexp(p, rate = 1, lower.tail = TRUE, log.p = FALSE)
     rexp(n, rate = 1)

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

    x, q: vector of quantiles.

       p: vector of probabilities.

       n: number of observations. If 'length(n) > 1', the length is
          taken to be the number required.

    rate: vector of rates.

log, log.p: logical; if TRUE, probabilities p are given as log(p).

lower.tail: logical; if TRUE (default), probabilities are P[X <= x],
          otherwise, P[X > x].

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

     If 'rate' is not specified, it assumes the default value of '1'.

     The exponential distribution with rate lambda has density

                     f(x) = lambda e^(- lambda x)

     for x >= 0.

_V_a_l_u_e:

     'dexp' gives the density, 'pexp' gives the distribution function,
     'qexp' gives the quantile function, and 'rexp' generates random
     deviates.

_N_o_t_e:

     The cumulative hazard H(t) = - log(1 - F(t)) is '-pexp(t, r, lower
     = FALSE, log = TRUE)'.

_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:

     'exp' for the exponential function, 'dgamma' for the gamma
     distribution and 'dweibull' for the Weibull distribution, both of
     which generalize the exponential.

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

     dexp(1) - exp(-1) #-> 0

