I want to hide a column of a pandas dataframe but Streamlit shows all the columns.
import numpy as np
import pandas as pd
import streamlit as st
df = pd.DataFrame(np.random.randn(3,4), columns=['A','B','C','D'])
st.dataframe(df.style.hide(["A"], axis="columns"))