Skip to content

Instantly share code, notes, and snippets.

@jthomasmock
Created March 2, 2018 18:05
Show Gist options
  • Save jthomasmock/1a90b9ffdaac84a8d5680d847fd5737a to your computer and use it in GitHub Desktop.
Save jthomasmock/1a90b9ffdaac84a8d5680d847fd5737a to your computer and use it in GitHub Desktop.
library(tidyverse)
library(beepr)
beep(4,mtcars %>%
group_by(am, cyl) %>%
summarize_at(vars(wt, mpg), funs(mean, sd)) %>%
print())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment