laverdes commited on
Commit
70c8ac8
·
1 Parent(s): ca1c617

fix: session state no df_plot_t

Browse files
Files changed (1) hide show
  1. pages/1_📈_Plotting.py +2 -2
pages/1_📈_Plotting.py CHANGED
@@ -65,7 +65,7 @@ if 'df_plot' in list(st.session_state.keys()):
65
  df_plot_t.columns = [str(column) for column in range(len(df_plot_t.columns))]
66
  st.caption(f"Columns of df_plot: {list(df_plot_t.columns)}")
67
  st.caption(f"Axes of df_plot: {df_plot_t.axes}")
68
- st.dataframe(st.session_state.df_plot_t)
69
- st.line_chart(st.session_state.df_plot_t, y=list(df_plot_t.columns))
70
  elif df_base.empty and file:
71
  st.warning("Consider running outlier detection to clean your data!", icon="⚠️")
 
65
  df_plot_t.columns = [str(column) for column in range(len(df_plot_t.columns))]
66
  st.caption(f"Columns of df_plot: {list(df_plot_t.columns)}")
67
  st.caption(f"Axes of df_plot: {df_plot_t.axes}")
68
+ st.dataframe(df_plot_t)
69
+ st.line_chart(df_plot_t, y=list(df_plot_t.columns))
70
  elif df_base.empty and file:
71
  st.warning("Consider running outlier detection to clean your data!", icon="⚠️")