dexp(x, rate=1) pexp(q, rate=1) qexp(p, rate=1) rexp(n, rate=1)
x,q
| vector of quantiles. |
p
| vector of probabilities. |
n
| number of observations to generate. |
rate
| vector of rates. |
rate
(i.e. mean 1/rate
).
dexp
gives the density,
pexp
gives the distribution function
qexp
gives the quantile function
and
rexp
generates random deviates.
The exponential distribution with rate λ has density
f(x) = lambda e^-( lambda x)
exp
.