BurrIII {CoSMoS} | R Documentation |
Burr Type III distribution
Description
Provides density, distribution function, quantile function, random value generation, and raw moments of order r for the Burr Type III distribution.
Usage
dburrIII(x, scale, shape1, shape2, log = FALSE)
pburrIII(q, scale, shape1, shape2, lower.tail = TRUE, log.p = FALSE)
qburrIII(p, scale, shape1, shape2, lower.tail = TRUE, log.p = FALSE)
rburrIII(n, scale, shape1, shape2)
mburrIII(r, scale, shape1, shape2)
Arguments
x , q |
vector of quantiles. |
scale , shape1 , shape2 |
scale and shape parameters; the shape arguments cannot be a vectors (must have length one). |
log , log.p |
logical; if TRUE, probabilities p are given as log(p). |
lower.tail |
logical; if TRUE (default), probabilities are |
p |
vector of probabilities. |
n |
number of observations. If |
r |
raw moment order |
Examples
## plot the density
ggplot(data.frame(x = c(1, 15)),
aes(x)) +
stat_function(fun = dburrIII,
args = list(scale = 5,
shape1 = .25,
shape2 = .75),
colour = 'royalblue4') +
labs(x = '',
y = 'Density') +
theme_classic()
[Package CoSMoS version 2.1.0 Index]