forked from tidyverse/dbplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverb-count.R
87 lines (79 loc) · 2.2 KB
/
verb-count.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#' 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()].
#'
#' @inheritParams arrange.tbl_lazy
#' @inheritParams dplyr::count
#' @param .drop Not supported for lazy tables.
#' @importFrom dplyr count
#' @export
#' @examples
#' 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()
count.tbl_lazy <- function(x, ..., wt = NULL, sort = FALSE, name = NULL) {
if (!missing(...)) {
out <- group_by(x, ..., .add = TRUE)
} else {
out <- x
}
out <- tally(out, wt = {{ wt }}, sort = sort, name = name)
out <- group_by(out, !!!syms(group_vars(x)))
out
}
#' @rdname count.tbl_lazy
#' @importFrom dplyr add_count
#' @export
add_count.tbl_lazy <- function (x, ..., wt = NULL, sort = FALSE, name = NULL, .drop = NULL) {
check_unsupported_arg(.drop)
if (!missing(...)) {
out <- group_by(x, ..., .add = TRUE)
} else {
out <- x
}
out <- dplyr::add_tally(out, wt = !!enquo(wt), sort = sort, name = name)
group_by(out, !!!syms(group_vars(x)))
}
#' @rdname count.tbl_lazy
#' @importFrom dplyr tally
#' @export
tally.tbl_lazy <- function(x, wt = NULL, sort = FALSE, name = NULL) {
wt <- enquo(wt)
if (quo_is_null(wt)) {
n <- expr(n())
} else {
n <- expr(sum(!!wt, na.rm = TRUE))
}
name <- check_count_name(name, group_vars(x))
out <- summarise(x, !!name := !!n, .groups = "drop")
if (sort) {
arrange(out, desc(!!sym(name)))
} else {
out
}
}
n_name <- function (x) {
name <- "n"
while (name %in% x) {
name <- paste0("n", name)
}
name
}
check_count_name <- function(name, vars, arg = caller_arg(name), call = caller_env()) {
if (is.null(name)) {
name <- n_name(vars)
if (name != "n") {
cli::cli_inform(c(
"Storing counts in {.field {name}}, as {.field n} already present in input",
i = "Use {.code name = \"new_name\"} to pick a new name."
))
}
}
check_name(name, arg = arg, call = call)
name
}