BUM_distribution | R Documentation |
Density and distribution function, and random generation for a BUM distribution. The quantile function cannot be simply expressed and is thus not available.
dbum(x, lambda, a)
pbum(q, lambda, a)
x, q |
Vector of quantiles. |
lambda |
Vector of BUM parameter |
a |
Vector of BUM parameter |
The b
parameter of the typical beta distribution function is
constrained to be 1
here to limit it to a one-sided, monotonic case,
peaking at 0, when 0 < a < 1
.
dbum
gives the density (PDF), and pbum
gives the
distribution function (CDF).
dbum(x = 0.096, lambda = 0.65, a = 0.1)
pbum(q = 0.096, lambda = 0.65, a = 0.1)
dbum(x = c(0.013, 0.04, 0.93, 0.8), lambda = 0.73, a = 0.02)
pbum(q = c(0.013, 0.04, 0.93, 0.8), lambda = 0.73, a = 0.02)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.