awacke1 commited on
Commit
07b3869
·
1 Parent(s): 50f3518

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -1
app.py CHANGED
@@ -119,6 +119,31 @@ Do you have a history of heart disease? (ICD10 code: I25.10)
119
  Have you been diagnosed with sleep apnea? (ICD10 code: G47.33)
120
 
121
  """)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
 
123
  # Define main function
124
  def main():
@@ -157,7 +182,7 @@ def main():
157
  diabetes_code_lookup('E11.9')
158
 
159
  ShowDiabetesAssessment()
160
-
161
 
162
  # Display each question and an input text field for the answer
163
  keycount=0
 
119
  Have you been diagnosed with sleep apnea? (ICD10 code: G47.33)
120
 
121
  """)
122
+
123
+ def ShowIschemicHeartDisease():
124
+ st.markdown("""
125
+
126
+ Ischemic heart disease is a condition that occurs when the blood flow to the heart is reduced, causing damage to the heart muscle. There are several factors that can increase the risk of developing ischemic heart disease or pre-heart disease, including:
127
+ Age: As people get older, the risk of developing ischemic heart disease increases.
128
+ Gender: Men are more likely than women to develop ischemic heart disease, although the risk for women increases after menopause.
129
+ Family history: A family history of ischemic heart disease can increase a person's risk.
130
+ Smoking: Smoking is a major risk factor for ischemic heart disease.
131
+ High blood pressure: High blood pressure can damage the blood vessels and increase the risk of developing ischemic heart disease.
132
+ High cholesterol: High levels of cholesterol can cause plaque to build up in the arteries, which can lead to ischemic heart disease.
133
+ Diabetes: People with diabetes are at an increased risk of developing ischemic heart disease.
134
+ Obesity: Being overweight or obese can increase the risk of developing ischemic heart disease.
135
+ To assess a patient's risk of developing ischemic heart disease or pre-heart disease, healthcare providers may ask a series of questions about the patient's medical history, lifestyle, and family history. Some questions that map to specific LOINC, Snomed, or ICD10 codes include:
136
+ Have you ever been diagnosed with hypertension? (LOINC: 59621-4, Snomed: 38341003, ICD10: I10)
137
+ Have you ever been diagnosed with high cholesterol? (LOINC: 2093-3, Snomed: 166717004, ICD10: E78.0)
138
+ Do you have a family history of heart disease? (LOINC: 68703-1, Snomed: 408443003, ICD10: Z83.2)
139
+ Do you smoke? (LOINC: 72166-2, Snomed: 8517006, ICD10: F17.200)
140
+ Have you ever been diagnosed with diabetes? (LOINC: 4548-4, Snomed: 44054006, ICD10: E11.9)
141
+ What is your body mass index (BMI)? (LOINC: 39156-5, Snomed: 60621009, ICD10: Z68.39)
142
+ By assessing these and other factors, healthcare providers can determine a patient's risk of developing ischemic heart disease and recommend appropriate interventions to help reduce that risk.
143
+
144
+ """)
145
+
146
+
147
 
148
  # Define main function
149
  def main():
 
182
  diabetes_code_lookup('E11.9')
183
 
184
  ShowDiabetesAssessment()
185
+ ShowIschemicHeartDisease()
186
 
187
  # Display each question and an input text field for the answer
188
  keycount=0