A curated list of open technology projects to sustain a stable climate, energy supply, biodiversity and natural resources.

rnassqs

Allows users to access the USDA's National Agricultural Statistics Service Quick Stats data through their API.
https://github.com/ropensci/rnassqs

Category: Consumption
Sub Category: Agriculture and Nutrition

Last synced: about 21 hours ago
JSON representation

Repository metadata

R interface for the USDA National Agricultural Statistical Service's (NASS) 'Quick Stats' API (https://quickstats.nass.usda.gov/api)

README.Rmd

          ---
output:
  md_document:
    variant: gfm
---




rnassqs Usage Release Development
rnassqs

(Wheat image from here.)

License CRAN Last Change
downloads Zenodo R CMD Check
Codecov test status
ORCID Project Status: Active – The project has reached a stable, usable state and is being actively developed.
DOI:10.21105/joss.01880 Project Status: Maturing.

__As required by the NASS Terms of Use: This product uses the NASS API but is not endorsed or certified by NASS.__ ## rnassqs (R NASS Quick Stats) `rnassqs` allows users to access the USDA's National Agricultural Statistics Service (NASS) Quick Stats data through their API. It is simple and easy to use, and provides some functions to help navigate the bewildering complexity of some Quick Stats data. For docs and code examples, visit the package web page here: [https://docs.ropensci.org/rnassqs/](https://docs.ropensci.org/rnassqs/). ## Installing Install the package via `devtools` or CRAN: ```{r eval=FALSE} # Via devtools library(devtools) install_github('ropensci/rnassqs') # Via CRAN install.packages("rnassqs") ``` ## API Key To use the NASS Quick Stats API you need an [API key](https://quickstats.nass.usda.gov/api/). The API key should in general not be included in scripts. One way of making the key available without defining it in a script is by setting it in your `.Renviron` file, which is usually located in your home directory. If you are an `rstudio` user, you can use `usethis::edit_r_environ()` to open your `.Renviron` file and add a line that looks like: ```{r eval=FALSE} NASSQS_TOKEN="" ``` Alternatively, you can set it explicitly in the console with `nassqs_auth(key = )`. This will set the environmental variable NASSQS_TOKEN, which is used to access the API. You can also set this directly with `Sys.setenv("NASSQS_TOKEN" = )`. ## Usage See the examples in [inst/examples](inst/examples) for quick recipes to download data. The primary function is `nassqs()`, with which you can make any query of variables. For example, to mirror the request that is on the [NASS API documentation](https://quickstats.nass.usda.gov/api/), you can use: ```{r eval=FALSE} library(rnassqs) # You must set your api key before requesting data nassqs_auth(key = ) # Parameters to query on and data call params <- list(commodity_desc = "CORN", year__GE = 2012, state_alpha = "VA") d <- nassqs(params) ``` Parameters __do not__ need to be capitalized, and also do not need to be in a list format. The following works just as well: ```{r eval=FALSE} d <- nassqs(commodity_desc = "corn", year__GE = 2012, state_alpha = "va") ``` You can request data for multiple values of the same parameter by using a simple list as follows: ```{r eval=FALSE} params <- list(commodity_desc = "CORN", year__GE = 2012, state_alpha = c("VA", "WA")) d <- nassqs(params) ``` NASS does not allow GET requests that pull more than 50,000 records in one request. The function will inform you if you try to do that. It will also inform you if you've requested a set of parameters for which there are no records. Other useful functions include: ```{r eval=FALSE} # returns a set of unnique values for the parameter "STATISTICCAT_DESC" nassqs_param_values("statisticcat_desc") # returns a count of the number of records for a given query nassqs_record_count(params=params) # Get yields specifically # Equivalent to including "'statisticat_desc' = 'YIELD'" in your parameter list. nassqs_yields(params) # Get acres specifically # Equivalent to including all "AREA" values in statisticcat_desc nassqs_acres(params) # Specifies just "AREA HARVESTED" values of statisticcat_desc nassqs_acres(params, area = "AREA HARVESTED") ``` ### Handling inequalities and operators other than "=" The NASS API handles other operators by modifying the variable name. The API can accept the following modifications: * __LE: <= * __LT: < * __GT: > * __GE: >= * __LIKE: like * __NOT_LIKE: not like * __NE: not equal For example, to request corn yields in Virginia and Pennsylvania for all years since 2000, you would use something like: ```{r eval=FALSE} params <- list(commodity_desc = "CORN", year__GE = 2000, state_alpha = c("VA", "PA"), statisticcat_desc = "YIELD") df <- nassqs(params) #returns data as a data frame. ``` See the [vignette](https://docs.ropensci.org/rnassqs/articles/rnassqs.html) for more examples and details on usage. ## Contributing Contributions are more than welcome, and there are several ways to contribute: - Examples: More examples are always helpful. If you use `rnassqs` to query data from 'Quick Stats' and would like to contribute your query, consider submitting a pull request adding your query as a file in [inst/examples/](https://github.com/ropensci/rnassqs/tree/main/inst/examples). - File an issue: If there is functionality you'd like to see added or something that is confusing, consider [creating an issue](https://github.com/ropensci/rnassqs/issues/new). The best issue contains an example of the problem or feature. Consider the excellent package [reprex](https://github.com/tidyverse/reprex) in creating a reproducible example. - Contributing documentation: Clarifying and expanding the documentation is always appreciated, especially if you find an area that is lacking and would like to improve it. `rnassqs` uses roxygen2, which means the documentation is at the top of each function definition. Please submit any improvements as a pull request. - Contributing code: if you see something that needs improving and you'd like to make the changes, contributed code is very welcome. Begin by filing a new issue to discuss the proposed change, and then submit a pull request to address the issue. `rnassqs` follows the style outlined in Hadley Wickham's [R Packages](https://r-pkgs.org/code.html#code-style). Following this style makes the pull request and review go more smoothly. ## Alternatives In June 2019 the `usdarnass` package was released on [CRAN](https://cran.r-project.org/package=usdarnass) and is also available to install via [github](https://github.com/rdinter/usdarnass). `usdarnass` has similar functionality to this package. NASS also provides a daily tarred and gzipped file of their entire dataset. At the time of writing it is approaching 1 GB. You can download that file via their [data site](https://www.nass.usda.gov/datasets/). The FTP link also contains builds for: NASS census (every 5 years ending with 2 and 7), or data for one of their specific sectors (CROPS, ECONOMICS, ANIMALS & PRODUCTS). At the time of this writing, specific files for the ENVIRONMENTAL and DEMOGRAPHICS sectors are not available. ### Acknowledgments Thank you to rOpensci reviewers Adam Sparks and Neal Richardson and editor Lincoln Mullen, for their fantastic feedback and assistance. User feedback and use case contributions have been a huge help to make `rnassqs` more accessible and user-friendly. More use cases or feature requests are always welcome! [![ropensci_footer](https://ropensci.org/public_images/ropensci_footer.png)](https://ropensci.org) ```{r, echo = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "README-" ) ```

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 7 days ago

Total Commits: 168
Total Committers: 9
Avg Commits per committer: 18.667
Development Distribution Score (DDS): 0.119

Commits in past year: 5
Committers in past year: 1
Avg Commits per committer in past year: 5.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Nicholas Potter p****t@g****m 148
Neal Richardson n****n@g****m 7
jsta s****2@m****u 5
Robert Dinterman r****n@g****m 2
Nicholas Potter 1****S 2
austinwpearce a****e@g****m 1
jpiaskowski j****k@g****m 1
Emrah Er e****r 1
Jonathan Adams j****6@g****m 1

Committer domains:


Issue and Pull Request metadata

Last synced: 2 days ago

Total issues: 57
Total pull requests: 17
Average time to close issues: 10 months
Average time to close pull requests: 16 days
Total issue authors: 13
Total pull request authors: 8
Average comments per issue: 2.23
Average comments per pull request: 1.53
Merged pull request: 17
Bot issues: 0
Bot pull requests: 0

Past year issues: 0
Past year pull requests: 1
Past year average time to close issues: N/A
Past year average time to close pull requests: about 5 hours
Past year issue authors: 0
Past year pull request authors: 1
Past year average comments per issue: 0
Past year average comments per pull request: 0.0
Past year merged pull request: 1
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/ropensci/rnassqs

Top Issue Authors

  • potterzot (31)
  • sheilasaia (4)
  • wenlong-liu (4)
  • brandco (2)
  • PieceMaker (2)
  • maelle (2)
  • jdeines (2)
  • rsmiller74 (2)
  • rdinter (2)
  • lindblb (2)
  • RafaRafa (2)
  • dwd62 (1)
  • danielreispereira (1)

Top Pull Request Authors

  • potterzot (3)
  • PieceMaker (2)
  • jpiaskowski (2)
  • emraher (2)
  • nealrichardson (2)
  • jsta (2)
  • austinwpearce (2)
  • rdinter (2)

Top Issue Labels

  • enhancement (20)
  • bug (2)
  • help wanted (2)

Top Pull Request Labels


Dependencies

DESCRIPTION cran
  • httr * imports
  • jsonlite * imports
  • stats * imports
  • utils * imports
  • here * suggests
  • httptest * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • testthat * suggests

Score: 6.068425588244111