dateFindR | R Documentation |
A function made to search other columns for dates and add them to the eventDate column. The function searches the columns locality, fieldNotes, locationRemarks, and verbatimEventDate for the relevant information.
dateFindR(data = NULL, maxYear = lubridate::year(Sys.Date()), minYear = 1700)
data |
A data frame or tibble. Occurrence records as input. |
maxYear |
Numeric. The maximum year considered reasonable to find. Default = lubridate::year(Sys.Date()). |
minYear |
Numeric. The minimum year considered reasonable to find. Default = 1700. |
The function results in the input occurrence data with but with updated eventDate, year, month, and day columns for occurrences where these data were a) missing and b) located in one of the searched columns.
# Using the example dataset, you may not find any missing eventDates are rescued (dependent on
# which version of the example dataset the user inputs.
beesRaw_out <- dateFindR(data = beesRaw,
# Years above this are removed (from the recovered dates only)
maxYear = lubridate::year(Sys.Date()),
# Years below this are removed (from the recovered dates only)
minYear = 1700)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.