Testing the rnassqs R package with Willamette basin data

Pull in data via API for Survey data This script uses the NASS API to query the NASS Quickstats service for historic acres harvested of primary crop groups in Willamette basin counties in Oregon from 1969-2013. An example of using the NASS Quickstats API to pull in and examine crop data in Willamette basin. library(dplyr) ## Warning: package 'dplyr' was built under R version 3.5.2 library(tibble) library(tidyr) library(rnassqs) library(lubridate) library(readr) years <- seq(as. [Read More]