process_ecotox_dates | R Documentation |
character
to dates where relevant The function
search_ecotox()
returns fields
from the ECOTOX database as is. Fields that represent dates are usually formatted as
"%m\%d\%Y"
. Unfortunately, this format is not consistently used throughout the
database. process_ecotox_dates()
takes a data.frame
returned by
search_ecotox()
, locates date columns, represented by text, sanitises the text
and converts them to Date
objects. It will sanitise the date fields as much as possible.
It will correct most dates. Dates without a specified calender year, a date range,
illegal date format (even after sanitation) are returned as NA
.
process_ecotox_dates(x, .fns = as_date_ecotox, ..., .names = NULL)
x |
A |
.fns |
Function to convert |
... |
Arguments passed to |
.names |
A 'glue' specification used to rename the date columns. By default
it is |
Returns a data.frame
in which the columns containing date information
is converted from the character format from the database to actual date objects (
"POSIXlt"
and "POSIXct"
).
Pepijn de Vries
Other ecotox-sanitisers:
as_date_ecotox()
,
as_numeric_ecotox()
,
as_unit_ecotox()
,
mixed_to_single_unit()
,
process_ecotox_numerics()
,
process_ecotox_units()
if (check_ecotox_availability()) {
df <- search_ecotox(
list(
latin_name = list(
terms = c("Skeletonema", "Daphnia"),
method = "contains"
),
chemical_name = list(
terms = "benzene",
method = "exact"
)
), list_ecotox_fields("full"))
df_dat <-
process_ecotox_dates(df, warn = FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.