get_gamma_site_model_n_params {beautier} | R Documentation |
Get the number of distributions a site model has
get_gamma_site_model_n_params(gamma_site_model)
gamma_site_model |
a site model's gamma site model,
as returned by |
the number of parameters a site model has
Richèl J.C. Bilderbeek
check_empty_beautier_folder()
# 0 parameters
get_gamma_site_model_n_params(
create_gamma_site_model(gamma_cat_count = 0)
)
# 0 parameters
get_gamma_site_model_n_params(
create_gamma_site_model(gamma_cat_count = 1)
)
# 1 parameter
get_gamma_site_model_n_params(
create_gamma_site_model(
gamma_cat_count = 2,
gamma_shape_prior_distr = create_exp_distr()
)
)
check_empty_beautier_folder()