Box-Cox Power Exponential distribution (BCPE)
bcpe.Rd
Density, distribution function, quantile function, and random generation for the Box-Cox Power Exponential distribution.
Usage
dbcpe(x, mu = 5, sigma = 0.1, nu = 1, tau = 2, log = FALSE)
pbcpe(q, mu = 5, sigma = 0.1, nu = 1, tau = 2, lower.tail = TRUE, log.p = FALSE)
qbcpe(p, mu = 5, sigma = 0.1, nu = 1, tau = 2, lower.tail = TRUE, log.p = FALSE)
rbcpe(n, mu = 5, sigma = 0.1, nu = 1, tau = 2)
Arguments
- x, q
vector of quantiles
- mu
location parameter, must be positive.
- sigma
scale parameter, must be positive.
- nu
vector of
nu
parameter values.- tau
vector of
tau
parameter values, must be positive.- log, log.p
logical; if
TRUE
, probabilities/ densities \(p\) are returned as \(\log(p)\).- lower.tail
logical; if
TRUE
(default), probabilities are \(P[X \le x]\), otherwise \(P[X > x]\).- p
vector of probabilities
- n
number of random values to return
Value
dbcpe
gives the density, pbcpe
gives the distribution function, qbcpe
gives the quantile function, and rbcpe
generates random deviates.
Details
This implementation of dbcpe
and pbcpe
allows for automatic differentiation with RTMB
while the other functions are imported from gamlss.dist
package.
See gamlss.dist::BCPE
for more details.