Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -619,24 +619,7 @@ if st.session_state.get("app_mode") == "Data Cleaning":
|
|
619 |
st.dataframe(st.session_state.cleaned_data.head(), use_container_width=True)
|
620 |
|
621 |
|
622 |
-
|
623 |
-
import pandas as pd
|
624 |
-
import numpy as np
|
625 |
-
import plotly.express as px
|
626 |
-
from scipy import stats # For statistical tests
|
627 |
-
from pandas_profiling import ProfileReport # Automated EDA (if you have it installed)
|
628 |
-
|
629 |
-
# --------------------------
|
630 |
-
# Helper Functions
|
631 |
-
# --------------------------
|
632 |
-
def enhance_section_title(title, icon="✨"):
|
633 |
-
"""Helper function to create a styled section title with an icon."""
|
634 |
-
st.markdown(f"<h2 style='border-bottom: 2px solid #ccc; padding-bottom: 5px;'>{icon} {title}</h2>", unsafe_allow_html=True)
|
635 |
-
|
636 |
-
# --------------------------
|
637 |
-
# Page Content
|
638 |
-
# --------------------------
|
639 |
-
if st.session_state.get("app_mode") == "EDA":
|
640 |
st.title("🔍 Interactive Data Explorer")
|
641 |
|
642 |
if st.session_state.cleaned_data is None:
|
|
|
619 |
st.dataframe(st.session_state.cleaned_data.head(), use_container_width=True)
|
620 |
|
621 |
|
622 |
+
elif app_mode == "EDA":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
st.title("🔍 Interactive Data Explorer")
|
624 |
|
625 |
if st.session_state.cleaned_data is None:
|