QUANTILE {GenHMM1d} | R Documentation |
Quantile function
Description
This function computes the quantile function of a univariate distribution, excluding zero-inflated.
Usage
QUANTILE(p, param, family, size = 0)
Arguments
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 |
Value
q |
quantile/VAR |
Examples
family = "gaussian"
theta = matrix(c(-1.5, 1.7),1,2) ;
quantile = QUANTILE(0.01, theta, family)
print('Quantile : ')
print(quantile)
[Package GenHMM1d version 0.2.1 Index]