Group / Tally / Table

group_tally_table(x, ...)

Arguments

x

A data frame.

...

Unquoted variables to group by.

Value

A knitr::kable().

Examples

group_tally_table(mtcars, cyl, carb)
#> #> #> | cyl| carb| n| #> |---:|----:|--:| #> | 4| 1| 5| #> | 4| 2| 6| #> | 6| 1| 2| #> | 6| 4| 4| #> | 6| 6| 1| #> | 8| 2| 4| #> | 8| 3| 3| #> | 8| 4| 6| #> | 8| 8| 1|