dplyr summarize Warnings

A short description of the post.

Rodney Dyer https://dyerlab.org (Center for Environmental Studies)https://ces.vcu.edu
2021-02-09

One of the few annoying things I find with dplyr lately is the addition of an experimental option where if you use something like,

group_by(X) %>% 
  summarize( Val = mean(Y))

it gives you an error message with something like.

summarise() has grouped output by ‘X’. You can override using the .groups argument.

But why would I want to ‘override’ that grouping dplyr::authors? Didn’t I just set the grouping? I would suspect that the majority of use cases are exactly like above (group_by() immediately by summarize()).

While much of tidyverse is too verbose for most of my liking. I can do without messages like:

messages on tidyverse startup

Well I finally figured out how to shut the first part up (still working on the second part). Just put the following code into your .Rprofile file for a global fix, or any code you are using on a per-file basis.

options( dplyr.summarise.inform = FALSE )

Now if we could just find some way to not have to use include=FALSE in the chunk preamble or suppressPackageStartupMessages(library(dplyr)) just to load in a library without adding a bunch of crap to our markdown files.

Citation

For attribution, please cite this work as

Dyer (2021, Feb. 9). The Dyer Laboratory: dplyr summarize Warnings. Retrieved from https://dyerlab.github.io/DLabWebsite/posts/2021-02-09-dplyr-summarize-warnings/

BibTeX citation

@misc{dyer2021dplyr,
  author = {Dyer, Rodney},
  title = {The Dyer Laboratory: dplyr summarize Warnings},
  url = {https://dyerlab.github.io/DLabWebsite/posts/2021-02-09-dplyr-summarize-warnings/},
  year = {2021}
}