Determine if the object is a valid beta distribution, as created by create_beta_distr
Source: R/is_distr.R
is_beta_distr.Rd
Determine if the object is a valid
beta distribution,
as created by create_beta_distr
See also
use is_distr
to see if x is any
distribution
Examples
check_empty_beautier_folder()
# TRUE
is_beta_distr(create_beta_distr())
#> [1] TRUE
# FALSE
is_beta_distr(create_exp_distr())
#> [1] FALSE
is_beta_distr(NA)
#> [1] FALSE
is_beta_distr(NULL)
#> [1] FALSE
is_beta_distr("nonsense")
#> [1] FALSE
check_empty_beautier_folder()