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