QUANTILE: Quantile function

View source: R/QUANTILE.R

QUANTILER 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)


GenHMM1d documentation built on Sept. 9, 2025, 5:50 p.m.

Related to QUANTILE in GenHMM1d...