is_distr_name {beautier} | R Documentation |
Determines if the name is a valid distribution name
Description
Determines if the name is a valid distribution name
Usage
is_distr_name(name)
Arguments
name |
the name to be tested |
Value
TRUE if the name is a valid distribution name, FALSE otherwise
Author(s)
Richèl J.C. Bilderbeek
Examples
check_empty_beautier_folder()
# TRUE
is_distr_name("uniform")
is_distr_name("normal")
is_distr_name("one_div_x")
is_distr_name("log_normal")
is_distr_name("exponential")
is_distr_name("gamma")
is_distr_name("beta")
is_distr_name("laplace")
is_distr_name("inv_gamma")
is_distr_name("poisson")
# FALSE
is_distr_name("nonsense")
check_empty_beautier_folder()
[Package beautier version 2.6.12 Index]