Description Usage Arguments Value Author(s) Examples
View source: R/utility_functions.R
reduce_seasons queries data for a single season or between
two seasons depending on how arguments are filled.
1 |
uwin_data |
The list object returned from |
start |
A character vector that contains the first sampling period
and year that you would like to query.
|
end |
A character vector that contains the last sampling period and year
that you would like to query.
|
Returns the list object from collect_tables with data
from either a single season (if end is left NULL) or with data
that lie between the sampling periods specified in start and
end. Note that this only queries data in the Visits, Photos, and
Detections table within the Access database.
Mason Fidino
1 2 3 4 5 6 7 | dat <- do_qaqc(uwin_test)
dat <- reduce_seasons(dat, start = "JA16", end = "JU17")
# if only collecting data from one season.
dat <- do_qaqc(uwin_test)
dat <- reduce_seasons(dat, start = "JA16")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.