I will like to use pandas to summarize or visualize some useful summary from my data to highlight how suppliers deviate from the date order was due for supply. Here's a snippet of my data frame:
Supplier TimeDiff (days)
A 3 days
B 4 days
B 12 days
A 0 days
C 1 days
B 2 days
D 3 days
E 5 days
E 7 days
"Supplier" column contain the supplier codes and "TimeDiff" column contain time difference (date range obtained by deducting "order due date" from "order received date").
Does anyone know how best I can summarise this data? Thanks

data.groupby('Supplier').mean()['TimeDiff']