Spaces:
Runtime error
Runtime error
Vamsi Thiriveedhi
commited on
Commit
·
bad13a0
1
Parent(s):
4f450f4
enh: move upset plot header to more appropriate place
Browse files- filter_data_app.py +1 -2
filter_data_app.py
CHANGED
@@ -245,7 +245,6 @@ def main():
|
|
245 |
# Sort the DataFrame based on user selection
|
246 |
filtered_df = filtered_df.sort(by=sort_column, descending=sort_order)
|
247 |
|
248 |
-
st.header("UpSet Plots of Qualitative Checks")
|
249 |
|
250 |
# Pagination for the filtered dataframe
|
251 |
page_size = 10
|
@@ -283,7 +282,7 @@ def main():
|
|
283 |
hide_index=True,
|
284 |
use_container_width=True
|
285 |
)
|
286 |
-
|
287 |
# Explanation about the UpSet plot
|
288 |
with st.expander("About the UpSet Plot"):
|
289 |
st.write("""
|
|
|
245 |
# Sort the DataFrame based on user selection
|
246 |
filtered_df = filtered_df.sort(by=sort_column, descending=sort_order)
|
247 |
|
|
|
248 |
|
249 |
# Pagination for the filtered dataframe
|
250 |
page_size = 10
|
|
|
282 |
hide_index=True,
|
283 |
use_container_width=True
|
284 |
)
|
285 |
+
st.header("UpSet Plots of Qualitative Checks")
|
286 |
# Explanation about the UpSet plot
|
287 |
with st.expander("About the UpSet Plot"):
|
288 |
st.write("""
|