Uniform Cumulative Distribution Function
Usage
prob_unif(x, min = 0, max = 1)
Arguments
- x
A numeric vector of quantiles.
- min
A numeric vector of the minimums.
- max
A numeric vector of the maximums.
Value
An numeric vector of the corresponding probabilities.
See also
Other prob_dist:
prob_bern(),
prob_beta(),
prob_beta_binom(),
prob_binom(),
prob_exp(),
prob_gamma(),
prob_gamma_pois(),
prob_gamma_pois_zi(),
prob_lnorm(),
prob_neg_binom(),
prob_norm(),
prob_pois(),
prob_pois_zi(),
prob_skewnorm(),
prob_student()
Examples
prob_unif(c(0, 0.5, 1))
#> [1] 0.0 0.5 1.0