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.
Examples
if (FALSE) { # \dontrun{
# 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)
records # returns 17
} # }