QUANTILE | R Documentation |
This function computes the quantile function of a univariate distribution, excluding zero-inflated.
QUANTILE(p, param, family, size = 0)
p |
values at which the quantile needs to be computed; between 0 and 1; (e.g 0.01, 0.05) |
param |
parameters of the distribution; (1 x p) |
family |
distribution name; run the function distributions() for help |
size |
additional parameter for some discrete distributions; run the command distributions() for help |
q |
quantile/VAR |
family = "gaussian"
theta = matrix(c(-1.5, 1.7),1,2) ;
quantile = QUANTILE(0.01, theta, family)
print('Quantile : ')
print(quantile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.