Last data update: 2014.03.03

R: Compute the Inverse Cumulative Distribution Function
invcdfR Documentation

Compute the Inverse Cumulative Distribution Function

Description

Compute the inverse of the cumulative distribution function for a univariate probability distribution.

Usage

invcdf(object, val)

Arguments

object

A univariate probability distribution.

val

A value between 0 and 1.

Value

A value v such that the probability that x≤q v is given by val.

Author(s)

Petter Mostad <mostad@chalmers.se>

See Also

cdf

Examples

invcdf(normal(), 0.975)
invcdf(binomialdistribution(10, 0.4), 0.5)

Results