Spaces:
Runtime error
Runtime error
fix: session state no df_plot_t
Browse files- 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(
|
69 |
-
st.line_chart(
|
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="⚠️")
|