Display DataFrame index name

While using st.write or st.table it would be useful to add an argument which suggests to display the index name or even hide the index column from displaying!

3 Likes

100% agree. Right now the only option seems to be:

st.write(df.reset_index())

This creates a dataframe with a dummy integer index which is also displayed (undesirable).

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.