I would like to be able to suppress some of the header information from summarize. For example,
ACS %>% group_by(EDUCD, major) %>%
summarise(avg = mean(INCTOT, na.rm= TRUE),
med = median(INCTOT, na.rm= TRUE))
gives me
# A tibble: 12 x 4
# Groups: EDUCD [4]
EDUCD major avg med
<fct> <chr> <dbl> <dbl>
1 Bachelor's accounting 82201. 59000
2 Bachelor's econ 95268. 60000
3 Bachelor's other BA 63287. 46200
4 Master's accounting 108625. 80000
I would like the lines with the information about the tibble size and the groups to go away. (I also wouldn't mind getting rid of the line beginning <fct>.