beta_pdf()

Learn how to use the beta_pdf() function to return the beta probability density function.

Returns the probability density beta function.

The beta distribution is commonly used to study variation in the percentage of something across samples, such as the fraction of the day people spend watching television.

Syntax

beta_pdf(x, alpha, beta)

Parameters

NameTypeRequiredDescription
xint, long, or real✔️A value at which to evaluate the function.
alphaint, long, or real✔️A parameter of the distribution.
betaint, long, or real✔️A parameter of the distribution.

Returns

The probability beta density function.

Examples

datatable(x:double, alpha:double, beta:double, comment:string)
[
    0.5, 10.0, 20.0, "Valid input",
    1.5, 10.0, 20.0, "x > 1, yields NaN",
    double(-10), 10.0, 20.0, "x < 0, yields NaN",
    0.1, double(-1.0), 20.0, "alpha is < 0, yields NaN"
]
| extend r = beta_pdf(x, alpha, beta)

Output

xalphabetacommentr
0.51020Valid input0.746176019310951
1.51020x > 1, yields NaNNaN
-101020x < 0, yields NaNNaN
0.1-120alpha is < 0, yields NaNNaN
  • For computing the inverse of the beta cumulative probability density function, see beta-inv().
  • For the standard cumulative beta distribution function, see beta-cdf().