DrishtiSharma commited on
Commit
5510bbd
Β·
verified Β·
1 Parent(s): a36e3a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,7 +78,7 @@ elif input_option == "Upload CSV File":
78
 
79
  # Show dataset preview only after loading (for both Hugging Face and CSV)
80
  if st.session_state.df is not None:
81
- with st.expander("πŸ“‚ View Dataset Preview", expanded=False):
82
  st.dataframe(st.session_state.df.head())
83
 
84
 
 
78
 
79
  # Show dataset preview only after loading (for both Hugging Face and CSV)
80
  if st.session_state.df is not None:
81
+ with st.expander("πŸ“‚ View Dataset Preview", expanded=True):
82
  st.dataframe(st.session_state.df.head())
83
 
84