Checks if x is a probability (non-missing dbl between 0 and 1 inclusive with no attributes including names).
Usage
check_prob(x, coerce = FALSE, x_name = substitute(x), error = TRUE)
check_probability(x, coerce = FALSE, x_name = substitute(x), error = TRUE)
check_prop(x, coerce = FALSE, x_name = substitute(x), error = TRUE)
Examples
check_prob(1, error = FALSE)
#> Warning: `check_prob()` was deprecated in checkr 0.5.1.
#> ℹ Please use chk::chk_dbl() and chk::chk_range() instead.
check_prob(1.1, error = FALSE)
#> Warning: the values in 1.1 must lie between 0 and 1
check_prob(c(0, 1), error = FALSE)
#> Warning: c(0, 1) must have 1 element