Quantile Weibull Mixture | R Documentation |
Gives the quantile function value of a univariate Weibull Mixture.
qweibull_mix(p, pi, shape, scale, lower.tail = TRUE, log.p = FALSE)
p |
value or vector to apply on the quantile function. |
pi |
vector of mixture weights. |
shape |
vector of shape parameters. |
scale |
vector of scale parameters. |
lower.tail |
logical; if TRUE (default), probabilites are P[X ≤ x], otherwise P[X > x]. |
log.p |
logical; if FALSE (default), probabilities are expected in p, otherwise log[probabilities] are expected. |
CASTRO, M. O.; MONTALVO, G. S. A.
## Quantile Function ## A value qweibull_mix(0.59, pi = c(0.6, 0.4), shape = c(10, 18), scale = c(1, 2)) ## A vector qweibull_mix(c(0.25, 0.50, 0.75), pi = c(0.6, 0.4), shape = c(10, 18), scale = c(1, 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.