Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -110,5 +110,5 @@ with tabs[1]:
|
|
| 110 |
last_mile_col = [col for col in df_ctn.columns if "last mile" in col.lower()][0]
|
| 111 |
|
| 112 |
# Group by Last Mile Service and aggregate by row count
|
| 113 |
-
grouped = df_ctn.groupby(last_mile_col).size().reset_index(name='
|
| 114 |
st.dataframe(grouped, use_container_width=True)
|
|
|
|
| 110 |
last_mile_col = [col for col in df_ctn.columns if "last mile" in col.lower()][0]
|
| 111 |
|
| 112 |
# Group by Last Mile Service and aggregate by row count
|
| 113 |
+
grouped = df_ctn.groupby(last_mile_col).size().reset_index(name='CTN Count')
|
| 114 |
st.dataframe(grouped, use_container_width=True)
|