powered by
This function computes the quantile function of a univariate distribution, excluding zero-inflated.
QUANTILE(p, param, family, size = 0)
quantile/VAR
values at which the quantile needs to be computed; between 0 and 1; (e.g 0.01, 0.05)
parameters of the distribution; (1 x p)
distribution name; run the function distributions() for help
additional parameter for some discrete distributions; run the command distributions() for help
family = "gaussian" theta = matrix(c(-1.5, 1.7),1,2) ; quantile = QUANTILE(0.01, theta, family) print('Quantile : ') print(quantile)
Run the code above in your browser using DataLab