Count observations by group
These are methods for the dplyr count()
and tally()
generics. They
wrap up group_by.tbl_lazy()
, summarise.tbl_lazy()
and, optionally,
arrange.tbl_lazy()
.
## S3 method for class 'tbl_lazy' count(x, ..., wt = NULL, sort = FALSE, name = NULL) ## S3 method for class 'tbl_lazy' tally(x, wt = NULL, sort = FALSE, name = NULL)
x |
A data frame, data frame extension (e.g. a tibble), or a lazy data frame (e.g. from dbplyr or dtplyr). |
... |
< |
wt |
<
|
sort |
If |
name |
The name of the new column in the output. If omitted, it will default to |
library(dplyr, warn.conflicts = FALSE) db <- memdb_frame(g = c(1, 1, 1, 2, 2), x = c(4, 3, 6, 9, 2)) db %>% count(g) %>% show_query() db %>% count(g, wt = x) %>% show_query() db %>% count(g, wt = x, sort = TRUE) %>% show_query()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.