Spaces:
Runtime error
Runtime error
Commit
·
523f5eb
1
Parent(s):
4a4533c
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,7 +23,7 @@ if uploaded_file is not None:
|
|
| 23 |
fig = px.scatter_matrix(df, dimensions=numerical_cols)
|
| 24 |
st.plotly_chart(fig)
|
| 25 |
elif len(categorical_cols) >= 2:
|
| 26 |
-
fig = px.treemap(df, path=
|
| 27 |
st.plotly_chart(fig)
|
| 28 |
else:
|
| 29 |
fig = px.sunburst(df, path=categorical_cols + numerical_cols)
|
|
|
|
| 23 |
fig = px.scatter_matrix(df, dimensions=numerical_cols)
|
| 24 |
st.plotly_chart(fig)
|
| 25 |
elif len(categorical_cols) >= 2:
|
| 26 |
+
fig = px.treemap(df, path=['RECORDCOUNTUNIQUEASSESSMENTLOINC', 'CD_CDNG_C'])
|
| 27 |
st.plotly_chart(fig)
|
| 28 |
else:
|
| 29 |
fig = px.sunburst(df, path=categorical_cols + numerical_cols)
|