Aggregate deprecated use combine

Whoops sorry I guess I didn’t pay enough attention!

Here is one way to do both

combine(groupby(df6,:Group),([:Variable1,:Variable2] .=> f for f in (mean,std))...)

which is kind of shorthand for

combine(groupby(df6,:Group),[:Variable1,:Variable2] .=> mean,[:Variable1,:Variable2] .=> std)