Spaces:
Runtime error
Runtime error
chore: new plot height 450
Browse files- pages/1_📈_Plotting.py +1 -1
pages/1_📈_Plotting.py
CHANGED
@@ -58,7 +58,7 @@ with tab1:
|
|
58 |
st.caption("Your visualization:")
|
59 |
df_plot_t = df_plot.copy(deep=True).transpose()
|
60 |
df_plot_t.columns = [str(column) for column in range(len(df_plot_t.columns))]
|
61 |
-
st.line_chart(df_plot_t, y=list(df_plot_t.columns), height=
|
62 |
st.dataframe(df_plot_t)
|
63 |
with st.expander("See explanation"):
|
64 |
st.caption("The chart above shows...")
|
|
|
58 |
st.caption("Your visualization:")
|
59 |
df_plot_t = df_plot.copy(deep=True).transpose()
|
60 |
df_plot_t.columns = [str(column) for column in range(len(df_plot_t.columns))]
|
61 |
+
st.line_chart(df_plot_t, y=list(df_plot_t.columns), height=450, width=600)
|
62 |
st.dataframe(df_plot_t)
|
63 |
with st.expander("See explanation"):
|
64 |
st.caption("The chart above shows...")
|