Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,20 @@ import plotly.express as px
|
|
3 |
import streamlit as st
|
4 |
import jsonlines
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
# Create a DataFrame with CPT codes, procedures, and expected costs
|
7 |
data = {
|
8 |
'Code Type': ['CPT', 'SNOMED', 'RXNORM', 'DEA', 'LOINC', 'ORI', 'ORU', 'CCD'],
|
|
|
3 |
import streamlit as st
|
4 |
import jsonlines
|
5 |
|
6 |
+
st.markdown("""
|
7 |
+
| π #Definition | π Data Fields |
|
8 |
+
| --- | --- |
|
9 |
+
| π€ asking for more help or #treatment | π Patient info, Referral details |
|
10 |
+
| πΌ about a patient's health #problem or #limits | π Patient info, Health #problem details |
|
11 |
+
| π allowing medicine | π Patient info, #Medicine #details |
|
12 |
+
| π explaining a #patient's health #problem | π Patient info, Health #problem details |
|
13 |
+
| π plan for getting better | π Patient info, #Treatment details |
|
14 |
+
| π₯ patient needs surgery | π Patient info, #Surgery details |
|
15 |
+
| π patient can do activities | π Patient info, #Activity details |
|
16 |
+
| π
reminding about appointments | π Patient info, #Appointment details |
|
17 |
+
| βΏ patient's disability | π Patient info, #Disability details |
|
18 |
+
| π teaching about health | π Patient info, #Education topic |
|
19 |
+
""")
|
20 |
# Create a DataFrame with CPT codes, procedures, and expected costs
|
21 |
data = {
|
22 |
'Code Type': ['CPT', 'SNOMED', 'RXNORM', 'DEA', 'LOINC', 'ORI', 'ORU', 'CCD'],
|