Update app.py
Browse files
app.py
CHANGED
@@ -173,8 +173,8 @@ if st.button("Results"):
|
|
173 |
df_styled = df.style.set_properties(**properties)
|
174 |
st.dataframe(df_styled)
|
175 |
if df is not None:
|
176 |
-
fig = px.treemap(df, path=[px.Constant("all"), 'text', 'label'
|
177 |
-
values='score', color='
|
178 |
fig.update_layout(margin = dict(t=50, l=25, r=25, b=25))
|
179 |
st.plotly_chart(fig)
|
180 |
|
|
|
173 |
df_styled = df.style.set_properties(**properties)
|
174 |
st.dataframe(df_styled)
|
175 |
if df is not None:
|
176 |
+
fig = px.treemap(df, path=[px.Constant("all"), 'text', 'label'],
|
177 |
+
values='score', color='text')
|
178 |
fig.update_layout(margin = dict(t=50, l=25, r=25, b=25))
|
179 |
st.plotly_chart(fig)
|
180 |
|