Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -72,11 +72,11 @@ elif selected_tab == "Clustering Results":
|
|
72 |
st.subheader("Full Clustering Results")
|
73 |
st.image(image, use_column_width=False, caption='Static PNG File',width=750)
|
74 |
|
75 |
-
with st.spinner('Loading Interactive Results...'):
|
76 |
# Display Altair chart
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
|
81 |
# Dropdown functionality to update DataFrame
|
82 |
st.subheader("Select a cluster")
|
|
|
72 |
st.subheader("Full Clustering Results")
|
73 |
st.image(image, use_column_width=False, caption='Static PNG File',width=750)
|
74 |
|
75 |
+
# with st.spinner('Loading Interactive Results...'):
|
76 |
# Display Altair chart
|
77 |
+
st.subheader("Interactive Chart")
|
78 |
+
chart = get_altair_chart()
|
79 |
+
st.altair_chart(chart, use_container_width=True)
|
80 |
|
81 |
# Dropdown functionality to update DataFrame
|
82 |
st.subheader("Select a cluster")
|