ssd_qburrIII3 {ssdtools} | R Documentation |
Quantile Function
Description
Quantile Function
Usage
ssd_qburrIII3(
p,
shape1 = 1,
shape2 = 1,
scale = 1,
lower.tail = TRUE,
log.p = FALSE
)
ssd_qgamma(p, shape = 1, scale = 1, lower.tail = TRUE, log.p = FALSE)
ssd_qgompertz(p, location = 1, shape = 1, lower.tail = TRUE, log.p = FALSE)
qgompertz(p, llocation = 0, lshape = 0, lower.tail = TRUE, log.p = FALSE)
ssd_qinvpareto(p, shape = 3, scale = 1, lower.tail = TRUE, log.p = FALSE)
ssd_qlgumbel(
p,
locationlog = 0,
scalelog = 1,
lower.tail = TRUE,
log.p = FALSE
)
qlgumbel(p, locationlog = 0, scalelog = 1, lower.tail = TRUE, log.p = FALSE)
ssd_qllogis_llogis(
p,
locationlog1 = 0,
scalelog1 = 1,
locationlog2 = 1,
scalelog2 = 1,
pmix = 0.5,
lower.tail = TRUE,
log.p = FALSE
)
ssd_qllogis(p, locationlog = 0, scalelog = 1, lower.tail = TRUE, log.p = FALSE)
ssd_qlnorm_lnorm(
p,
meanlog1 = 0,
sdlog1 = 1,
meanlog2 = 1,
sdlog2 = 1,
pmix = 0.5,
lower.tail = TRUE,
log.p = FALSE
)
ssd_qlnorm(p, meanlog = 0, sdlog = 1, lower.tail = TRUE, log.p = FALSE)
ssd_qweibull(p, shape = 1, scale = 1, lower.tail = TRUE, log.p = FALSE)
Arguments
p |
vector of probabilities. |
shape1 |
shape1 parameter. |
shape2 |
shape2 parameter. |
scale |
scale parameter. |
lower.tail |
logical; if TRUE (default), probabilities are |
log.p |
logical; if TRUE, probabilities p are given as log(p). |
shape |
A string of the column in data for the shape aesthetic. |
location |
location parameter. |
llocation |
location parameter on the log scale. |
lshape |
shape parameter on the log scale. |
locationlog |
location on log scale parameter. |
scalelog |
scale on log scale parameter. |
locationlog1 |
locationlog1 parameter. |
scalelog1 |
scalelog1 parameter. |
locationlog2 |
locationlog2 parameter. |
scalelog2 |
scalelog2 parameter. |
pmix |
Proportion mixture parameter. |
meanlog1 |
mean on log scale parameter. |
sdlog1 |
standard deviation on log scale parameter. |
meanlog2 |
mean on log scale parameter. |
sdlog2 |
standard deviation on log scale parameter. |
meanlog |
mean on log scale parameter. |
sdlog |
standard deviation on log scale parameter. |
Functions
-
ssd_qburrIII3()
: Quantile Function for BurrIII Distribution -
ssd_qgamma()
: Quantile Function for Gamma Distribution -
ssd_qgompertz()
: Quantile Function for Gompertz Distribution -
ssd_qinvpareto()
: Quantile Function for Inverse Pareto Distribution -
ssd_qlgumbel()
: Quantile Function for Log-Gumbel Distribution -
ssd_qllogis_llogis()
: Cumulative Distribution Function for Log-Logistic/Log-Logistic Mixture Distribution -
ssd_qllogis()
: Cumulative Distribution Function for Log-Logistic Distribution -
ssd_qlnorm_lnorm()
: Cumulative Distribution Function for Log-Normal/Log-Normal Mixture Distribution -
ssd_qlnorm()
: Cumulative Distribution Function for Log-Normal Distribution -
ssd_qweibull()
: Cumulative Distribution Function for Weibull Distribution
See Also
Examples
ssd_qburrIII3(0.5)
ssd_qgamma(0.5)
ssd_qgompertz(0.5)
ssd_qinvpareto(0.5)
ssd_qlgumbel(0.5)
ssd_qllogis_llogis(0.5)
ssd_qllogis(0.5)
ssd_qlnorm_lnorm(0.5)
ssd_qlnorm(0.5)
ssd_qweibull(0.5)