Generate a new column "avgdelay" from the existing columns Note - You are expected to make a new column "avgdelay" by grouping "name_customer" column with reapect to mean of the "Delay" column. This new column "avg_delay" is meant to store "customer_name" wise delay groupby('name_customer')['Delay'].mean(numeric_only=False) Display the new "avg_delay" column
Can Anyone guide me