View source: R/wcvp_match_exact.R
wcvp_match_exact | R Documentation |
Exact matching of names to the WCVP, optionally using the author string to refine results.
wcvp_match_exact(names_df, wcvp_names, name_col, author_col = NULL, id_col)
names_df |
Data frame of names for matching. |
wcvp_names |
Data frame of taxonomic names from WCVP version 7 or later.
If |
name_col |
Character. The column in |
author_col |
the column in |
id_col |
the column in |
Match results from WCVP bound to the original data from names_df
.
Other name matching functions:
wcvp_match_fuzzy()
,
wcvp_match_names()
# these examples require 'rWCVPdata' if(requireNamespace("rWCVPdata")){ wcvp_names <- rWCVPdata::wcvp_names # including author string wcvp_match_exact(redlist_example, wcvp_names, "scientificName", author_col = "authority", id_col = "assessmentId" ) # without author string wcvp_match_exact(redlist_example, wcvp_names, "scientificName", id_col = "assessmentId") }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.