You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No Issue: 1. get_chas("county", state = "47") then 2. get_chas("county", state = "47", county = "157")
Running the functions in this order returns:
Data for all counties in Tennessee
Data for only Shelby County, Tennessee
Issue: 1. get_chas("county", state = "47", county = "157") then 2. get_chas("county", state = "47")
In this order returns:
Data for only Shelby County
Data for only Shelby County
Matching with cache data is too simple and doesn't know if a match is only a partial match. Need a reference states and counties? Maybe include with state abbreviations and names for get_chas calls.
The text was updated successfully, but these errors were encountered:
No Issue: 1.
get_chas("county", state = "47")
then 2.get_chas("county", state = "47", county = "157")
Running the functions in this order returns:
Issue: 1.
get_chas("county", state = "47", county = "157")
then 2.get_chas("county", state = "47")
In this order returns:
Matching with cache data is too simple and doesn't know if a match is only a partial match. Need a reference states and counties? Maybe include with state abbreviations and names for
get_chas
calls.The text was updated successfully, but these errors were encountered: