Spaces:
Runtime error
Runtime error
Commit
·
287667a
1
Parent(s):
9ad6fdf
Update app.py
Browse files
app.py
CHANGED
@@ -23,8 +23,8 @@ 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=['
|
30 |
st.plotly_chart(fig)
|
|
|
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=['CD_CDNG_C', 'RECORDCOUNTUNIQUEASSESSMENTLOINC'])
|
27 |
st.plotly_chart(fig)
|
28 |
else:
|
29 |
+
fig = px.sunburst(df, path=['CD_CDNG_C', 'RECORDCOUNTUNIQUEASSESSMENTLOINC'])
|
30 |
st.plotly_chart(fig)
|