Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -298,7 +298,7 @@ elif app_mode == "Smart Cleaning":
|
|
298 |
if st.button("⏭️ Redo Next Action", disabled=st.session_state.current_version == len(st.session_state.data_versions)-1):
|
299 |
st.session_state.current_version += 1
|
300 |
st.experimental_rerun()
|
301 |
-
|
302 |
# Data Health Dashboard with Cards
|
303 |
st.subheader("📊 Data Health Dashboard")
|
304 |
with st.expander("Show Comprehensive Data Report", expanded=True):
|
|
|
298 |
if st.button("⏭️ Redo Next Action", disabled=st.session_state.current_version == len(st.session_state.data_versions)-1):
|
299 |
st.session_state.current_version += 1
|
300 |
st.experimental_rerun()
|
301 |
+
dtype_counts = df.dtypes.astype(str).value_counts()
|
302 |
# Data Health Dashboard with Cards
|
303 |
st.subheader("📊 Data Health Dashboard")
|
304 |
with st.expander("Show Comprehensive Data Report", expanded=True):
|