These functions provide information about the Burr distribution with
location parameter equal to m, dispersion equal to
s, and family parameter equal to f: density,
cumulative distribution, quantiles, log hazard, and random generation.
The Burr distribution has density
$$
f(y) = \frac{\nu \sigma (y / \mu)^{\sigma-1}}
{\mu (1+(y/\mu)^\sigma)^{\nu+1}}$$
where \(\mu\) is the location parameter of the distribution,
\(\sigma\) is the dispersion, and \(\nu\) is the family
parameter.
Usage
dburr(y, m, s, f, log=FALSE)
pburr(q, m, s, f)
qburr(p, m, s, f)
rburr(n, m, s, f)