How to display full dataframe columns (10 columns) information instead of using “scale” button. I tried width but it didn’t work
Thanks in advance
How to display full dataframe columns (10 columns) information instead of using “scale” button. I tried width but it didn’t work
Thanks in advance
What about passing the kwarg use_container_width=True
to st.dataframe
and using a wide page layout with st.set_page_config(layout='wide')
`?