region

Parameter specifying regional groupings of US States

Usability Options:

  • Selected region parameter options may be leveraged in the CareQuery API as
    • A string: region = "midwest"
    • A list of strings for OR logic: region = ["midwest", "south"]
    • List of lists of strings for AND logic: region = [["midwest"], ["south"]]

Help within CareQuery API:

# import package
from care_query.care_query import CareQuery

# instantiate and connect
cq = CareQuery(email = "your-email", 
               token = "your-api-token")

# search parameter options available 
print(cq.glossary.list_options(parameter = "region"))

Queries Where Parameter is Used:

Parameter Options:

regionunderlying states
midwest['MN', 'OH', 'IL', 'WI', 'KS', 'IA', 'IN', 'ND', 'SD', 'NE', 'MO', 'MI']
northeast['MA', 'ME', 'NJ', 'NH', 'RI', 'VT', 'CT', 'NY', 'PA']
south['DC', 'NC', 'MD', 'OK', 'TX', 'SC', 'WV', 'LA', 'FL', 'DE', 'AR', 'VA', 'KY', 'GA', 'TN', 'AL', 'MS']
west['ID', 'NM', 'NV', 'MT', 'HI', 'OR', 'WY', 'CO', 'AK', 'CA', 'UT', 'AZ', 'WA']