list_ecotox_fields {ECOTOXr} | R Documentation |
List the field names that are available from the ECOTOX database
Description
List the field names (table headers) that are available from the ECOTOX database
Usage
list_ecotox_fields(
which = c("default", "extended", "full", "all"),
include_table = TRUE
)
Arguments
which |
A |
include_table |
A |
Details
This can be useful when specifying a search_ecotox()
, to identify which fields
are available from the database, for searching and output.
Not that when requesting 'all
' fields, you will get all fields available from the
latest EPA release of the ECOTOX database. This means that not necessarily all
fields are available in your local build of the database.
Value
Returns a vector
of type character
containing the field names from the ECOTOX database.
Author(s)
Pepijn de Vries
Examples
## Fields that are included in search results by default:
list_ecotox_fields("default")
## All fields that are available from the ECOTOX database:
list_ecotox_fields("all")
## All except fields from the tables 'chemical_carriers', 'media_characteristics',
## 'doses', 'dose_responses', 'dose_response_details', 'dose_response_links' and
## 'dose_stat_method_codes' that are available from the ECOTOX database:
list_ecotox_fields("full")