View source: R/fe_species_tum_wwk_long.R
validate_fe_species_tum_wwk_long | R Documentation |
Regular users will not require this function. Expert users will want to use
it in combination with the constructor
new_fe_species_tum_wwk_long
. Regular users, please construct
fe_species_tum_wwk_long
objects with
fe_species_tum_wwk_long
.
validate_fe_species_tum_wwk_long(x = character())
x |
An object that is expected to be a correct
|
Returns x
, but this function is mainly called for its side
effect which is pointing out any violations of the
fe_species_tum_wwk_long
object specifications. In case of such
violations, the function will terminate with an error.
# Passes validation
spec_ids <- as.character(c(70, 61, 88, 88, 10, 971, 32))
spec_ids <- new_fe_species_tum_wwk_long(spec_ids)
validate_fe_species_tum_wwk_long(spec_ids)
# Validating the following spec_ids throws an error due to
# non-supported species codes
spec_ids <- as.character(c(70, 61, 1221, 88, 88, 10, 971, 32, 4031))
spec_ids <- new_fe_species_tum_wwk_long(spec_ids)
try(
validate_fe_species_tum_wwk_long(spec_ids)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.