Skip to content
/ rnass Public

Interface to United States Department of Agriculture (USDA) National Agricultural Statistics Service (NASS) Database

Notifications You must be signed in to change notification settings

emraher/rnass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rnass

Build Status

Interface to USDA NASS QuickStats

WARNING

This is my first attempt for an R package. I heavily benefited from ropensci/rusda and ropensci/rnoaa.

Description

From USDA/NASS:

"The National Agricultural Statistics Service (NASS) offers Quick Stats, an on-line database containing official published aggregate estimates related to U.S. agricultural production. NASS develops these estimates from data collected through:

1) hundreds of sample surveys conducted each year covering virtually every aspect of U.S. agriculture
2) the Census of Agriculture conducted every five years providing state- and county-level aggregates

The Quick Stats application programming interface (API) provides direct access to the statistical information in the Quick Stats database. We invite developers to use this API and to give us feedback so we can continue to improve it."

rnass is an attempt to an interface to Quick Stats. Note that in order to use this package you will need an API key. Request your key from here.

Get rnass

install.packages("devtools")
devtools::install_github("emraher/rnass")

And load rnass

library("rnass")

Example 1

Get count

count <- nass_count(source_desc = "SURVEY", token = "YOUR API KEY")
count <- nass_count(source_desc = "SURVEY", year = "1990", token = "YOUR API KEY")

Example 2

Get parameters

parameters <- nass_param(param = "source_desc", token = "YOUR API KEY")
parameters <- nass_param(param = "region_desc", token = "YOUR API KEY")

Example 3

Get data

data <- nass_data(source_desc = "SURVEY", sector_desc = "CROPS", commodity_desc = "CORN", state_name = "KANSAS", year = "2014", token ="YOUR API KEY" )

About

Interface to United States Department of Agriculture (USDA) National Agricultural Statistics Service (NASS) Database

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages