We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
summarise.rowwise()
I think (to be consistent with summarise.data.frame) that this shouldn't message?
summarise.data.frame
library(dplyr, warn.conflicts = FALSE) df <- tibble( x = 1:3, y = c("a", "d,e,f", "g,h"), z = c("1", "2,3,4", "5,6") ) y <- df %>% rowwise() %>% summarise(n = length(x)) #> `summarise()` has ungrouped output. You can override using the `.groups` argument.
Created on 2021-05-06 by the reprex package (v2.0.0)
The text was updated successfully, but these errors were encountered:
summarise.rowwise_df() is quiet when the result is ungrouped
summarise.rowwise_df()
f31cae6
closes #5875
summarise.rowwise_df() is quiet when the result is ungrouped (#5887)
f04b40e
romainfrancois
Successfully merging a pull request may close this issue.
I think (to be consistent with
summarise.data.frame
) that this shouldn't message?Created on 2021-05-06 by the reprex package (v2.0.0)
The text was updated successfully, but these errors were encountered: