Reparameterized.gamma | R Documentation |
Reparameterized Gamma distribution functions
dgamma.rp(x, mean, var, log = FALSE) pgamma.rp(q, mean, var, lower.tail = TRUE, log.p = FALSE) qgamma.rp(p, mean, var, lower.tail = TRUE, log.p = FALSE) rgamma.rp(n, mean, var)
x |
likelihood function evaluates at point x |
mean |
mean |
var |
variance |
log |
as in stats::*gamma |
q |
quantile |
lower.tail |
logical; if TRUE (default), probabilities are P(X < x), otherwise, P(X>x). |
log.p |
logical; if TRUE, probabilities p are given as log(p) |
p |
cumulative probability |
n |
sample size |
Returns density values, cumulative probabilities, quantiles and random samples from a gamma distribution.
dgamma.rp(1, 1, 1) pgamma.rp(1.96, 1, 1) qgamma.rp(.975, 1, 1) rgamma.rp(10, 1, 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.