Student's t Quantile Function
Usage
quant_student(x, mean = 0, sd = 1, theta = 0)
Arguments
- x
A numeric vector of probabilities.
- mean
A numeric vector of the means.
- sd
A non-negative numeric vector of the standard deviations.
- theta
A non-negative numeric vector of the dispersion for the mixture
models (student, gamma-Poisson and beta-binomial).
Value
An numeric vector of the corresponding quantiles.
See also
Other quant_dist:
quant_bern(),
quant_beta(),
quant_binom(),
quant_exp(),
quant_gamma(),
quant_gamma_pois(),
quant_gamma_pois_zi(),
quant_lnorm(),
quant_neg_binom(),
quant_norm(),
quant_pois(),
quant_pois_zi(),
quant_skewnorm(),
quant_unif()
Examples
quant_student(c(0.1, 0.4, 0.6), mean = 1, sd = 2, theta = 1 / 3)
#> [1] -2.2754887 0.4466587 1.5533413