In base R, what's your go-to for d |> group_by() |> summarise() with multiple summary statistics, returning a data.frame?

#rstats

@mehmet_goktu do.call(rbind, lapply(split(, $group), \(.) .)) 😆

@mdsumner @mehmet_goktu

aggregate() ot like Michael says split -> apply -> do.call with rbind (but in a more readable way :P)