laverdes commited on
Commit
ecc36db
1 Parent(s): ede1dad

chore: refactor

Browse files
Files changed (1) hide show
  1. pages/1_📈_Plotting.py +4 -1
pages/1_📈_Plotting.py CHANGED
@@ -56,9 +56,12 @@ if 'df_plot' in st.session_state:
56
  df_plot_t = df_plot.copy(deep=True).transpose()
57
  df_plot_t.columns = [str(column) for column in range(len(df_plot_t.columns))]
58
  st.line_chart(df_plot_t, y=list(df_plot_t.columns), height=400, width=600)
 
59
  with st.expander("See explanation"):
60
  st.caption("The chart above shows...")
61
  elif df_base.empty and file:
62
  st.warning("Consider running outlier detection to clean your data!", icon="⚠️")
63
 
64
- # st.caption(f"developer:: session_state keys: {list(st.session_state.keys())}")
 
 
 
56
  df_plot_t = df_plot.copy(deep=True).transpose()
57
  df_plot_t.columns = [str(column) for column in range(len(df_plot_t.columns))]
58
  st.line_chart(df_plot_t, y=list(df_plot_t.columns), height=400, width=600)
59
+ st.dataframe(df_plot_t)
60
  with st.expander("See explanation"):
61
  st.caption("The chart above shows...")
62
  elif df_base.empty and file:
63
  st.warning("Consider running outlier detection to clean your data!", icon="⚠️")
64
 
65
+ st.caption(f"developer:: session_state keys: {list(st.session_state.keys())}")
66
+ st.caption(f"what is the meaning of the x-axis, add to explanation")
67
+ st.caption(f"add sample data demo in another tab")