Add a new column named "n" with (optionally per-group) sums/counts.
tally_se(x, wt = NULL, sort = FALSE)
x | data.frame to tally/count |
---|---|
wt | character optional column name containing row-weights (passed to count/tally) |
sort | logical if TRUE sort result in descending order |
.data with added column n, containing counts.
Note: dplyr::count
, dplyr::add_count
,
dplyr::tally
, and dplyr::add_tally
are not S3
methods, so it may not be practical to re-dispatch seplyr
calls
to these dplyr
implementations.
#> n #> 1 32#> n #> 1 198