vkt1414 commited on
Commit
72491f8
·
verified ·
1 Parent(s): db0d1fe

enh: change dataeditor to dataframe for summary view

Browse files
Files changed (1) hide show
  1. filter_data_app.py +1 -1
filter_data_app.py CHANGED
@@ -402,7 +402,7 @@ def main():
402
  bodyPart, laterality;
403
  """).pl()
404
  summary_df = summary_df.to_pandas()
405
- st.data_editor(summary_df, hide_index=True,use_container_width=True,height=1500)
406
 
407
  # elif page == "UpSet Plots":
408
 
 
402
  bodyPart, laterality;
403
  """).pl()
404
  summary_df = summary_df.to_pandas()
405
+ st.dataframe(summary_df, hide_index=True,use_container_width=True,height=1500)
406
 
407
  # elif page == "UpSet Plots":
408