I’m new to this streamlit
I’m trying to display DataFrames and I set the options for max and min rows and columns and the results aren’t reflecting the options I selected.
Here’'s a code snippet
pd.set_option(‘display.max_columns’, 12)
pd.set_option(‘display.min_rows’, 20)
pd.set_option(‘display.max_rows’, 50)
pd.get_option(“display.max_rows”)
result_dataFrame = pd.read_sql(query, mydb)
#result_dataFrame.columns()
st.title(‘BDK Services Group’)
st.write(result_dataFrame)
Any help would be most welcome.