Get annual summarized pill totals by county
summarized_county_annual(county = "Mingo", state = "WV", key = "WaPo")
Filter the data to only this county (e.g. 'Mingo')
Filter the data to county within this state (e.g. 'WV')
Key needed to make query successful
# \donttest{
library(arcos)
mingo_wv <- summarized_county_annual(county = "Mingo", state="WV", key="WaPo")
head(mingo_wv)
#> BUYER_COUNTY BUYER_STATE year count DOSAGE_UNIT countyfips
#> 1 MINGO WV 2006 4192 4691980 54059
#> 2 MINGO WV 2007 5389 7511830 54059
#> 3 MINGO WV 2008 7496 9795100 54059
#> 4 MINGO WV 2009 7227 7464630 54059
#> 5 MINGO WV 2010 4466 3162950 54059
#> 6 MINGO WV 2011 4243 2863950 54059
# }