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"]]
- A string:
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:
- careEncounter
- careVisit
- careEpisode
- careJourney
- nppesDetail
- geoDetail
- execOutreach
- providerOutreach
- affiliationActivity
- procAllowedAvgs
- providerDiagAggs
- providerProcAggs
- providerPayorAggs
- providerPayorDiagAggs
- providerPayorProcAggs
- orgDiagAggs
- orgProcAggs
- orgPayorAggs
- orgPayorDiagAggs
- orgPayorProcAggs
- payorDiagAggs
- payorProcAggs
- geoProcAggs
- geoSpecProcAggs
Parameter Options:
region | underlying 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'] |
Updated 10 months ago