Spaces:
Runtime error
Runtime error
keneonyeachonam
commited on
Commit
β’
a661c51
1
Parent(s):
5da15d8
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ fig = px.sunburst(
|
|
14 |
path=['Illness'],
|
15 |
values='Cost (Billion USD)',
|
16 |
color='Cost (Billion USD)',
|
17 |
-
color_continuous_scale='
|
18 |
)
|
19 |
|
20 |
# Define the Streamlit app
|
@@ -26,7 +26,8 @@ st.plotly_chart(fig, use_container_width=True)
|
|
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
|
|
|
14 |
path=['Illness'],
|
15 |
values='Cost (Billion USD)',
|
16 |
color='Cost (Billion USD)',
|
17 |
+
color_continuous_scale='reds'
|
18 |
)
|
19 |
|
20 |
# Define the Streamlit app
|
|
|
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
|