BBUM_distribution | R Documentation |
Density, distribution function, and random generation for the BBUM
distribution, with four parameters, lambda
, a
, theta
,
and r
. The quantile function cannot be simply expressed and is thus
not available.
dbbum(x, lambda, a, theta, r)
pbbum(q, lambda, a, theta, r)
rbbum(n, lambda, a, theta, r)
rbbum.ID(n, lambda, a, theta, r)
x |
Vector of quantiles. |
lambda |
Vector of BBUM parameter |
a |
Vector of BBUM parameter |
theta |
Vector of BBUM parameter |
r |
Vector of BBUM parameter |
q |
Vector of quantiles. |
n |
Number of observations. |
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
.
dbbum
gives the density (PDF), and pbbum
gives the
distribution function (CDF). rbbum
generates random values from the
distribution, and rbbum.ID
generates random values while identifying
the part of BBUM they belong to, as a data.frame
of two columns with
length n
. pvalue
corresponds to the generated values, while
cate
is 0
for null, 1
for primary beta, and 2
for secondary beta.
dbbum(x = 0.096, lambda = 0.65, a = 0.1, theta = 0.02, r = 0.07)
pbbum(q = 0.096, lambda = 0.65, a = 0.1, theta = 0.02, r = 0.07)
dbbum(x = c(0.013, 0.04, 0.93, 0.8), lambda = 0.73, a = 0.02, theta = 0.11, r = 0.003)
pbbum(q = c(0.013, 0.04, 0.93, 0.8), lambda = 0.73, a = 0.02, theta = 0.11, r = 0.003)
rbbum(n = 100, lambda = 0.65, a = 0.1, theta = 0.02, r = 0.07)
rbbum.ID(n = 100, lambda = 0.65, a = 0.1, theta = 0.02, r = 0.07)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.