Spaces:
Running
Running
Update app.py
Browse files
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:
|