getQuantile {SNSchart} | R Documentation |
Obtain Quantile from Distribution Function
Description
Get the quantile theta
from several distributions with user defined mean and variance.
Usage
getQuantile(
Ftheta,
mu,
sigma,
dist,
par.location = 0,
par.scale = 1,
par.shape = 1,
dist.par = NULL
)
Arguments
Ftheta |
scalar. Quantile of the data distribution. The values that take are between (0,1). |
mu |
scalar. Expected value of the desired distribution. |
sigma |
scalar. Standard deviation of the desired distribution. |
dist |
character string. Select from:
|
par.location |
scalar. Location parameter of the desired distribution. Default 0**. |
par.scale |
scalar. Scale parameter of the desired distribution. Default 1**. |
par.shape |
scalar. Shape parameter of the desired distribution, Default 1. |
dist.par |
vector. Overwrite
|
Value
A quantile theta
of the selected Ftheta
distribution with its parameters.
Examples
getQuantile(0.5, 0, 1, "Normal")