Skip to content

Releases: ropensci/rnassqs

Ag Land, Incl Buildings - Revised

08 Nov 00:06
535ab86
Compare
Choose a tag to compare

Previous release JOSS submission included citations with errors. Citations were not needed so they are dropped in this release.

Ag Land, Incl Buildings

07 Nov 23:38
a9eafb8
Compare
Choose a tag to compare

Update for JOSS submission, and include a feature request to get valid values of a parameter based on a set of query criteria. For example, user can now query the valid parameters for commodity_desc for a specific county and year instead of for all geographies and years.

Ducks - Operations with Sales

19 Aug 16:40
4354b9f
Compare
Choose a tag to compare

This release incorporates improvements to usability and documentation resulting from the rOpensci review process, including:

Queries no longer require listing

Queries can be made both by passing a list of parameters or the parameters themselves directly. These two queries are equivalent:

# Method 1: specify query parameters as function arguments
rnassqs::nassqs(commodity="APPLES", year__GE = 2012)

# Method 2: specify a list of parameters as a single function argument
params <- list(commodity = "APPLES", year__GE = 2012)
rnassqs::nassqs(params)

Key management is much simplified

Previously rnassqs managed keys in an unnecessarily complicated way. Now the package simply checks if the NASSQS_TOKEN environmental variable is set, and if not suggests how to set it.

Documentation improvements

Many changes to the Getting Started vignette and to function documentation should improve ease of use.

Corn Yields

03 May 16:34
585869f
Compare
Choose a tag to compare

rnassqs 0.4.0

  • Add automated unit tests that work locally and others that work on CRAN.
  • Improve documentation for core functions.
  • Add parsing for CSV formatted data.
  • Improve authentication.
  • Simplify function calls to eliminate redundant calls.
  • Add working examples and tests.
  • fix name error in the function nassqs_params_values to nassqs_param_values

Fuzzy Slippers

18 Dec 02:16
Compare
Choose a tag to compare

This release standardizes some terminology and adds some examples, while also cleaning up some of the documentation.

rnassqs release 0.0.1

10 Jul 18:04
52cf935
Compare
Choose a tag to compare
rnassqs release 0.0.1 Pre-release
Pre-release

R library to interface with the USDA NASS Quickstats API.

Date: Monday, July 10, 2017

Requirements

  • R >= 3.0
  • httr
  • jsonlite

Installation

Install with:

library(devtools)
install_github('potterzot/rnassqs')