| qexal | R Documentation |
Vectorized over p.
qexal(
p,
p0 = 0.5,
mu = 0,
sigma = 1,
gamma = 0,
lower.tail = TRUE,
log.p = FALSE
)
p |
Numeric vector of probabilities in (0, 1). |
p0 |
Probability level used in the quantile parametrization. Scalar in (0, 1). Default |
mu |
Location parameter (scalar). Default |
sigma |
Scale parameter (scalar, strictly positive). Default |
gamma |
Skewness parameter controlling asymmetry (scalar). Must be within valid bounds implied by |
lower.tail |
Logical scalar; if |
log.p |
Logical scalar; if |
Numeric vector of quantiles (same length as p).
p <- seq(0.1, 0.9, by = 0.2)
q <- qexal(p, p0 = 0.5, mu = 0, sigma = 1, gamma = 0)
all.equal(p, pexal(q, p0 = 0.5, mu = 0, sigma = 1, gamma = 0), tol = 1e-4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.