joycecast commited on
Commit
021f7d9
·
verified ·
1 Parent(s): 2626b66

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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='Row Count')
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)