The OpenD Programming Language

mir.stat.distribution.beta_proportion

This module contains algorithms for the Beta Proportion Distribution.

An alternate parameterization of the mir.stat.distribution.beta distribuion in terms of the mean of the distribution and the sum of its shape parameters (also known as the sample size of the Beta distribution).

Members

Functions

betaProportionCCDF
T betaProportionCCDF(T x, T mu, T kappa)

Computes the beta proportion complementary cumulative distribution function (CCDF).

betaProportionCDF
T betaProportionCDF(T x, T mu, T kappa)

Computes the beta proportion cumulatve distribution function (CDF).

betaProportionInvCDF
T betaProportionInvCDF(T p, T mu, T kappa)

Computes the beta proportion inverse cumulative distribution function (InvCDF).

betaProportionLPDF
T betaProportionLPDF(T x, T mu, T kappa)

Computes the beta proportion log probability density function (LPDF).

betaProportionPDF
T betaProportionPDF(T x, T mu, T kappa)

Computes the beta proportion probability density function (PDF).

Meta

Authors

John Michael Hall