Returns the number of records that fit a set of parameters. Useful if your current parameter set returns more than the 50,000 record limit.
nassqs_record_count(...)
... | either a named list of parameters or a series of parameters to form the query |
---|
integer that is the number of records that are returned from the API in response to the query
# Check the number of records returned for corn in 1995, Washington state params <- list( commodity_desc = "CORN", year = "2005", agg_level_desc = "STATE", state_name = "WASHINGTON" ) records <- nassqs_record_count(params)#> | | | 0% | |======================================================================| 100%#> Error: HTTP Failure: 401 #> unauthorizedrecords # returns 17#> Error in eval(expr, envir, enclos): object 'records' not found