i am trying to stretch this dataframe but dataframe(data, width, height) doesn’t works.
it seems like width have maximum size in my data
fig, ax = plt.subplots(2,2, figsize=(20,10))
…
st.pyplot(fig)
st.dataframe(table)
i am trying to stretch this dataframe but dataframe(data, width, height) doesn’t works.
it seems like width have maximum size in my data
fig, ax = plt.subplots(2,2, figsize=(20,10))
…
st.pyplot(fig)
st.dataframe(table)
In the hamburger menu (top right), choose Settings and check the Wide mode checkbox.
Additionaly, you can change page layout using st.set_page_config
Thank you so much!!