taxonomy | R Documentation |
Taxonomy based cleaning
tax_no_epithet(x, name = NULL, drop = TRUE)
x |
(data.frame) A data.frame1 |
name |
(character) Taxonomic name field Optional. See Details. |
drop |
(logical) Drop bad data points or not. Either way, we parse
out bade data points as an attribute you can access. Default: |
Returns a data.frame, with attributes
if (requireNamespace("rgbif", quietly = TRUE) && interactive()) { library("rgbif") res <- rgbif::occ_data(limit = 200)$data } else { res <- sample_data_3 } # Remove records where names don't have genus + epithet ## so removes those with only genus and those with no name (NA or NULL) NROW(res) df <- dframe(res) %>% tax_no_epithet(name = "name") NROW(df) attr(df, "name_var") attr(df, "tax_no_epithet")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.