Exercise

Groupby aggregates

Now let's look for some patterns in the data. One way you can do this is to look at groupby aggregates of the data. You will see if delays vary with season, carrier and origin airport.

You will visualize this data in the next exercise and in order for the plots to render nicely, we will use a subset of the original flights data in these exercises.

Instructions 1/4

undefined XP
    1
    2
    3
    4

Add the 'dep_delay' and 'arr_delay' columns and assign the value to 'total_delay' column.