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