Closed dcaud closed 6 months ago
Summarize gives error:
mtcars |> group_by(vs, am) |> summarize(mean_mpg = mean(mpg))
Summarise works as expected
mtcars |> group_by(vs, am) |> summarise(mean_mpg = mean(mpg))
Because hmisc library was loaded, which has its own summarize. More powerful warnings or errors about that namespace collision would be nice.
Summarize gives error:
Summarise works as expected