In the following, male_trips is a big pandas data frame and stations is a small pandas data frame. For each station id I\'d like to know how many male trips took place. The
how long would this take:
df = male_trips.groupby('start_station_id').sum()