Multichem commited on
Commit
343a518
·
verified ·
1 Parent(s): 371b7bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -766,7 +766,7 @@ with tab3:
766
  buf = BytesIO()
767
  fig.savefig(buf, format="png")
768
  st.image(buf)
769
- st.table(disp_data.mean())
770
  elif plot_count == "Two":
771
  graph_data = working_data.reindex(['Date', plot_var1, plot_var2],axis="columns")
772
  disp_data = working_data
@@ -790,7 +790,7 @@ with tab3:
790
  buf = BytesIO()
791
  fig.savefig(buf, format="png")
792
  st.image(buf)
793
- st.table(disp_data.mean())
794
  elif plot_count == "Three":
795
  graph_data = working_data.reindex(['Date', plot_var1, plot_var2, plot_var3],axis="columns")
796
  disp_data = working_data
@@ -816,4 +816,4 @@ with tab3:
816
  buf = BytesIO()
817
  fig.savefig(buf, format="png")
818
  st.image(buf)
819
- st.table(disp_data.mean())
 
766
  buf = BytesIO()
767
  fig.savefig(buf, format="png")
768
  st.image(buf)
769
+ st.table(disp_data)
770
  elif plot_count == "Two":
771
  graph_data = working_data.reindex(['Date', plot_var1, plot_var2],axis="columns")
772
  disp_data = working_data
 
790
  buf = BytesIO()
791
  fig.savefig(buf, format="png")
792
  st.image(buf)
793
+ st.table(disp_data)
794
  elif plot_count == "Three":
795
  graph_data = working_data.reindex(['Date', plot_var1, plot_var2, plot_var3],axis="columns")
796
  disp_data = working_data
 
816
  buf = BytesIO()
817
  fig.savefig(buf, format="png")
818
  st.image(buf)
819
+ st.table(disp_data)