Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -326,8 +326,8 @@ elif app_mode == "Smart Cleaning":
|
|
326 |
labels={'index': 'Column', 'value': 'Missing Count'},
|
327 |
color=df.isna().sum(), color_continuous_scale="Bluered"))
|
328 |
with col2:
|
329 |
-
st.plotly_chart(px.pie(values=df.dtypes.value_counts(),
|
330 |
-
|
331 |
|
332 |
# Cleaning Operations with Tabs
|
333 |
st.subheader("🔧 Cleaning Operations")
|
|
|
326 |
labels={'index': 'Column', 'value': 'Missing Count'},
|
327 |
color=df.isna().sum(), color_continuous_scale="Bluered"))
|
328 |
with col2:
|
329 |
+
st.plotly_chart(px.pie(values = df.dtypes.value_counts().tolist(),names = df.dtypes.value_counts().index.astype(str).tolist(),
|
330 |
+
title="Data Type Distribution", hole=0.3))
|
331 |
|
332 |
# Cleaning Operations with Tabs
|
333 |
st.subheader("🔧 Cleaning Operations")
|