CosmickVisions commited on
Commit
3c123e0
·
verified ·
1 Parent(s): 15a9f5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -128,10 +128,10 @@ def data_upload_page():
128
  col2.metric("Features", df.shape[1])
129
  col3.metric("Missing Values", df.isna().sum().sum())
130
 
131
- if st.button("Generate Full EDA Report"):
132
- with st.spinner("Generating comprehensive analysis..."):
133
- profile = ProfileReport(df, explorative=True)
134
- st_profile_report(profile)
135
 
136
  def model_training_page():
137
  st.title("🧠 Model Training Studio")
 
128
  col2.metric("Features", df.shape[1])
129
  col3.metric("Missing Values", df.isna().sum().sum())
130
 
131
+ if st.button("Generate Full Profile Report"):
132
+ with st.spinner("Generating report..."):
133
+ pr = ProfileReport(df, explorative=True)
134
+ st_profile_report(pr)
135
 
136
  def model_training_page():
137
  st.title("🧠 Model Training Studio")