inv_cdf.beta_dist: Inverse CDF (quantile function) for a beta distribution.

View source: R/beta_dist.R

inv_cdf.beta_distR Documentation

Inverse CDF (quantile function) for a beta distribution.

Description

Returns a function that computes quantiles of the beta distribution.

Usage

## S3 method for class 'beta_dist'
inv_cdf(x, ...)

Arguments

x

A beta_dist object.

...

Additional arguments (not used).

Value

A function function(p, lower.tail = TRUE, log.p = FALSE, ...) returning the quantile at probability p.

Examples

x <- beta_dist(2, 5)
q <- inv_cdf(x)
q(0.5)
q(0.95)

algebraic.dist documentation built on Feb. 27, 2026, 5:06 p.m.