Download archived versions of the NestWatch database, with optional control over what version is downloaded.
Usage
nw.getdata(version = NULL)
Arguments
- version
numeric; optional number corresponding to the desired dataset version. Defaults to latest available version
Value
two dataframes; `NW.attempts` containing nest-level parameters for each "Attempt.ID" and `NW.checks` containing check-level information for "Attempt.ID"s that have nest check data.
Details
The NestWatch dataset consists of two large files and this function might take several minutes to run depending on your connection speed. Presently, there is no option to subset the data prior to download.
Examples
if (FALSE) { # \dontrun{
# Download version 1 of the data
nw.getdata(version = 1)
# Download most recent version
nw.getdata()
} # }