CosmickVisions commited on
Commit
5cb75ad
·
verified ·
1 Parent(s): 0bc0d5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -258,6 +258,10 @@ if app_mode == "Data Upload":
258
  with st.spinner("Generating comprehensive report..."):
259
  pr = ProfileReport(df, explorative=True,title="Data Upload Report") # Added title to pandas profiling
260
  st_profile_report(pr)
 
 
 
 
261
 
262
  # 1. Missing Value Handling
263
  with tab1:
 
258
  with st.spinner("Generating comprehensive report..."):
259
  pr = ProfileReport(df, explorative=True,title="Data Upload Report") # Added title to pandas profiling
260
  st_profile_report(pr)
261
+
262
+
263
+ tab1, tab2, tab3, tab4 = st.tabs(["Missing Values", "Duplicates", "Data Types", "Outliers"])
264
+
265
 
266
  # 1. Missing Value Handling
267
  with tab1: