cdf.beta_dist: Cumulative distribution function for a beta distribution.

View source: R/beta_dist.R

cdf.beta_distR Documentation

Cumulative distribution function for a beta distribution.

Description

Returns a function that evaluates the beta CDF at given points.

Usage

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

Arguments

x

A beta_dist object.

...

Additional arguments (not used).

Value

A function function(q, log.p = FALSE, ...) returning the CDF (or log-CDF) at q.

Examples

x <- beta_dist(2, 5)
F <- cdf(x)
F(0.3)
F(0.5)

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