trashbirdecology / bbsAssistant

An R package for downloading and handling data and information from the North American Breeding Bird Survey.
Creative Commons Zero v1.0 Universal
27 stars 13 forks source link

Add data #45

Closed trashbirdecology closed 4 years ago

trashbirdecology commented 5 years ago

Saving example data using usethis::use_data() will allow us to avoid users having to download files from the internet AND avoid directory creation. This also allows us to run tests in CI.

Ex:

x<-1
y<-2
usethis::use_data(x, y)
trashbirdecology commented 4 years ago

Done