Functions to compute the probability density function, cumulative distribution function, and quantile function for the Beta distribution.
Usage
beta_pdf(x, alpha, beta)
beta_lpdf(x, alpha, beta)
beta_cdf(x, alpha, beta)
beta_lcdf(x, alpha, beta)
beta_quantile(p, alpha, beta)
Value
A single numeric value with the computed probability density, log-probability density, cumulative distribution, log-cumulative distribution, or quantile depending on the function called.