View source: R/bdc_scientificName_empty.R
bdc_scientificName_empty | R Documentation |
Flags records with empty or not interpretable scientific names.
bdc_scientificName_empty(data, sci_names = "scientificName")
data |
data.frame. Containing the species scientific names. |
sci_names |
character string. The column name with the species scientific name. Default = "scientificName". |
This test identifies records missing scientific names (i.e., empty or not applicable NA names)
A data.frame containing the column ".scientificName_empty". Compliant (TRUE) if 'sci_names' is not empty; otherwise "FALSE".
Other prefilter:
bdc_basisOfRecords_notStandard()
,
bdc_coordinates_country_inconsistent()
,
bdc_coordinates_empty()
,
bdc_coordinates_from_locality()
,
bdc_coordinates_outOfRange()
,
bdc_coordinates_transposed()
,
bdc_country_standardized()
x <- data.frame(scientificName = c("Ocotea odorifera", NA, "Panthera onca", ""))
bdc_scientificName_empty(data = x, sci_names = "scientificName")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.