Describe from Hmisc is one of my favorite functions. It gives a great looking summary for a dataset.
I'd like to be able to filter a dataset with dplyr and then pass a single column to describe().
Something like this
mtcars %>% filter(cyl > 5) %>% describe(cyl)
You could use
select
: