is_init_hky_site_model {beautier}R Documentation

Determine if x is an initialized HKY site model as created by create_hky_site_model

Description

Determine if x is an initialized HKY site model as created by create_hky_site_model

Usage

is_init_hky_site_model(x)

Arguments

x

the object to check if it is an initialized HKY site model

Value

TRUE if x is an initialized HKY site model

Author(s)

Richèl J.C. Bilderbeek

Examples

check_empty_beautier_folder()

hky_site_model <- create_hky_site_model()
# FALSE: not yet initialized
is_init_hky_site_model(hky_site_model)
hky_site_model <- init_hky_site_model(hky_site_model)
# TRUE: now it is initialized
is_init_hky_site_model(hky_site_model)

check_empty_beautier_folder()

[Package beautier version 2.6.12 Index]