Spaces:
Runtime error
Runtime error
Commit
·
5da15d8
1
Parent(s):
d529d0a
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,3 +20,15 @@ fig = px.sunburst(
|
|
| 20 |
# Define the Streamlit app
|
| 21 |
st.title('Cost of Illnesses in Billion USD per Year')
|
| 22 |
st.plotly_chart(fig, use_container_width=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
# Define the Streamlit app
|
| 21 |
st.title('Cost of Illnesses in Billion USD per Year')
|
| 22 |
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 |
+
})
|
| 31 |
+
|
| 32 |
+
# Define the Streamlit app
|
| 33 |
+
st.title('CPT Codes for Illnesses')
|
| 34 |
+
st.table(data)
|