In new version (0.7.5),
iris %>%
group_by(Species) %>%
summarise_at(-1, mean)
Error in summarise_impl(.data, dots) :
Column Species can't be modified because it's a grouping variable
I'm pretty sure that the grouping variable was automatically excluded in previous versions.
Is this a bug or a feature? (in order for me to change my code only if necessary)
In new version (0.7.5),
I'm pretty sure that the grouping variable was automatically excluded in previous versions.
Is this a bug or a feature? (in order for me to change my code only if necessary)