Add example like this where we use the agg method to specify multiple aggregation methods: ```py df.groupby("Date")["AdjustedClose"].agg(["mean", "min", "max"]) ```