Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -61,3 +61,96 @@ def health_game():
|
|
61 |
|
62 |
|
63 |
health_game()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
|
63 |
health_game()
|
64 |
+
|
65 |
+
import streamlit as st
|
66 |
+
|
67 |
+
health_conditions = [
|
68 |
+
{
|
69 |
+
"name": "Diabetes",
|
70 |
+
"patient_population": "π₯ Patients with diabetes",
|
71 |
+
"icd10_code_range": "π E08 - E13",
|
72 |
+
"gap_identification": "π Identifying patients with HbA1c levels > 9%, patients who have not received eye exams, and patients who have not received nephropathy screening.",
|
73 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as regular HbA1c testing, eye exams, and nephropathy screening."
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"name": "Cardiovascular Disease",
|
77 |
+
"patient_population": "π₯ Patients with cardiovascular disease",
|
78 |
+
"icd10_code_range": "π I20 - I25",
|
79 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received lipid profile screening, and patients who have not received blood pressure control.",
|
80 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, lipid profile screening, and blood pressure control."
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"name": "Asthma",
|
84 |
+
"patient_population": "π₯ Patients with asthma",
|
85 |
+
"icd10_code_range": "π J45",
|
86 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received asthma action plans, and patients who have not received follow-up care after hospitalization.",
|
87 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, asthma action plans, and follow-up care after hospitalization."
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"name": "Behavioral Health",
|
91 |
+
"patient_population": "π₯ Patients with behavioral health conditions",
|
92 |
+
"icd10_code_range": "π F00 - F99",
|
93 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received appropriate counseling, and patients who have not received follow-up care after hospitalization.",
|
94 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, counseling, and follow-up care after hospitalization."
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"name": "Cancer Screening",
|
98 |
+
"patient_population": "π₯ Patients eligible for cancer screening",
|
99 |
+
"icd10_code_range": "π C00 - D48",
|
100 |
+
"gap_identification": "π Identifying patients who have not received appropriate cancer screening tests, such as mammograms, colonoscopies, and cervical cancer screening.",
|
101 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate cancer screening tests."
|
102 |
+
},
|
103 |
+
{
|
104 |
+
"name": "Immunizations",
|
105 |
+
"patient_population": "π₯ Patients eligible for immunizations",
|
106 |
+
"icd10_code_range": "π Z23",
|
107 |
+
"gap_identification": "π Identifying patients who have not received appropriate immunizations, such as flu shots, pneumococcal vaccines, and HPV vaccines.",
|
108 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate immunizations."
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"name": "Maternity Care",
|
112 |
+
"patient_population": "π₯ Pregnant patients",
|
113 |
+
"icd10_code_range": "π O00 - O99",
|
114 |
+
"gap_identification": "π Identifying patients who have not received appropriate prenatal care, patients who have not received postpartum care, and patients who have not received appropriate screenings.",
|
115 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate prenatal care, postpartum care, and screenings."
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"name": "Osteoporosis",
|
119 |
+
"patient_population": "π₯ Patients with osteoporosis",
|
120 |
+
"icd10_code_range": "π M80 - M82",
|
121 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received bone density testing, and patients who have not received appropriate follow-up care.",
|
122 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, bone density testing, and follow-up care."
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"name": "Chronic Kidney Disease",
|
126 |
+
"patient_population": "π₯ Patients with chronic kidney disease",
|
127 |
+
"icd10_code_range": "π N18",
|
128 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received appropriate monitoring, and patients who have not received appropriate follow-up care.",
|
129 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, monitoring, and follow-up care."
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"name": "Depression",
|
133 |
+
"patient_population": "π₯ Patients with depression",
|
134 |
+
"icd10_code_range": "π F32 - F33",
|
135 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received appropriate counseling, and patients who have not received appropriate follow-up care.",
|
136 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, counseling, and follow-up care."
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"name": "Attention Deficit Hyperactivity Disorder (ADHD)",
|
140 |
+
"patient_population": "π₯ Patients with ADHD",
|
141 |
+
"icd10_code_range": "π F90",
|
142 |
+
"gap_identification": "π Identifying patients who have not received appropriate medication therapy, patients who have not received appropriate counseling, and patients who have not received appropriate follow-up care.",
|
143 |
+
"gap_closure_process": "π οΈ Providing timely and appropriate interventions, such as medication therapy, counseling, and follow-up care."
|
144 |
+
}
|
145 |
+
]
|
146 |
+
|
147 |
+
st.title("HEDIS Gap Closure Process for Top 10 Health Conditions")
|
148 |
+
|
149 |
+
for condition in health_conditions:
|
150 |
+
st.header(f"{condition['name']}")
|
151 |
+
st.markdown(f"{condition['patient_population']}")
|
152 |
+
st.markdown(f"{condition['icd10_code_range']}")
|
153 |
+
st.markdown(f"{condition['gap_identification']}")
|
154 |
+
st.markdown(f"{condition['gap_closure_process']}")
|
155 |
+
|
156 |
+
|