keneonyeachonam commited on
Commit
e246b9e
β€’
1 Parent(s): a661c51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -23,13 +23,17 @@ st.plotly_chart(fig, use_container_width=True)
23
 
24
 
25
 
 
26
  # Define the data
27
  data = pd.DataFrame({
28
- 'Illness': ['Anxiety', 'Depression', 'Diabetes', 'Heart Disease'],
 
29
  'CPT Code': ['90834, 90837, 90847', '90785, 90832, 90834', '82947, 82948, 82950', '93000, 93010, 93015'],
30
- 'Emoji': ['😰', 'πŸ˜”', '🩸', 'πŸ’”']
 
31
  })
32
 
33
  # Define the Streamlit app
34
- st.title('CPT Codes for Illnesses')
35
  st.table(data)
 
 
23
 
24
 
25
 
26
+
27
  # Define the data
28
  data = pd.DataFrame({
29
+ 'Illness': ['Anxiety 😰', 'Depression πŸ˜”', 'Diabetes 🩸', 'Heart Disease πŸ’”'],
30
+ 'SNOMED': ['35398006', '35489007', '73211009', '53741008'],
31
  'CPT Code': ['90834, 90837, 90847', '90785, 90832, 90834', '82947, 82948, 82950', '93000, 93010, 93015'],
32
+ 'ICD10': ['F41.1', 'F32.9', 'E11.9', 'I50.9'],
33
+ 'LOINC': ['59284-0', '72166-2', '4548-4', '8616-5']
34
  })
35
 
36
  # Define the Streamlit app
37
+ st.title('Codes for Illnesses')
38
  st.table(data)
39
+