Hi all,
First off- I love streamlit, it is great
I’m wondering if there are any plans to extend support for pandas styling in st.dataframe, particularly for the ‘.hide’ functionality? It would be useful for me because it would allow for dynamic filtering of dataframes without the extra latency needed to re-style the whole dataframe. You can do that right now for columns with column_config, but as far as I know no such thing is possible for rows.
By the way, for me .hide has been just removing formatting from the rows that are supposed to be hidden. For reference when I run the following with streamlit 1.32.2:
import streamlit as st
import pandas as pd
import copydata = pd.DataFrame({‘X’ : [1,2,3]
, ‘Y’ : [4,5,6]
, ‘Z’ : [7,8,9]}
, index = [‘A’,‘B’,‘C’])data_without_hide = data.style.background_gradient(axis = None)
data_with_hide = data.style.background_gradient(axis = None).hide(subset = [‘A’], axis = 0)
c1, c2 = st.columns(2)
with c1:
st.write('Table without hide:') st.table(data_without_hide) st.write('Table with hide:') st.table(data_with_hide)
with c2:
st.write('Dataframe without hide:') st.dataframe(data_without_hide) st.write('Dataframe with hide:') st.dataframe(data_with_hide)
The result I get is
The same dataframe displays correctly in a jupyter notebook, with the first row hidden. I don’t know if this qualifies as a bug because it’s established that not all pandas styling is supported in streamlit, but it is a bit strange
Thanks!