Skip to contents

Beta Cumulative Distribution Function

Usage

prob_beta(x, alpha = 1, beta = 1)

Arguments

x

A numeric vector of quantiles.

alpha

The first shape parameter of the beta distribution.

beta

The second shape parameter of the beta distribution.

Value

An numeric vector of the corresponding probabilities.

Examples

prob_beta(c(0, 0.5, 1), 2, 3)
#> [1] 0.0000 0.6875 1.0000