Skip to content

Align stat_bin(drop) with meaning #6323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions R/stat-bin.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
#' or left edges of bins are included in the bin.
#' @param pad If `TRUE`, adds empty bins at either end of x. This ensures
#' frequency polygons touch 0. Defaults to `FALSE`.
#' @param drop Treatment of zero count bins. If `"all"` (default), such
#' bins are kept as-is. If `"none"`, all zero count bins are filtered out.
#' If `"inner"` only zero count bins at the flanks are filtered out, but not
#' in the middle. `TRUE` is shorthand for `"all"` and `FALSE` is shorthand
#' @param drop Treatment of zero count bins. If `"none"` (default), such
#' bins are kept as-is. If `"all"`, all zero count bins are filtered out.
#' If `"extremes"` only zero count bins at the flanks are filtered out, but
#' not in the middle. `TRUE` is shorthand for `"all"` and `FALSE` is shorthand
#' for `"none"`.
#' @eval rd_computed_vars(
#' count = "number of points in bin.",
Expand Down Expand Up @@ -60,7 +60,7 @@ stat_bin <- function(mapping = NULL, data = NULL,
closed = c("right", "left"),
pad = FALSE,
na.rm = FALSE,
drop = "all",
drop = "none",
orientation = NA,
show.legend = NA,
inherit.aes = TRUE) {
Expand Down Expand Up @@ -100,9 +100,10 @@ StatBin <- ggproto("StatBin", Stat,
if (is.logical(params$drop)) {
params$drop <- if (isTRUE(params$drop)) "all" else "none"
}
drop <- params$drop
params$drop <- arg_match0(
params$drop %||% "all",
c("all", "none", "inner"), arg_nm = "drop"
params$drop %||% "none",
c("all", "none", "extremes"), arg_nm = "drop"
)

has_x <- !(is.null(data$x) && is.null(params$x))
Expand Down Expand Up @@ -132,7 +133,7 @@ StatBin <- ggproto("StatBin", Stat,
compute_group = function(data, scales, binwidth = NULL, bins = NULL,
center = NULL, boundary = NULL,
closed = c("right", "left"), pad = FALSE,
breaks = NULL, flipped_aes = FALSE, drop = "all",
breaks = NULL, flipped_aes = FALSE, drop = "none",
# The following arguments are not used, but must
# be listed so parameters are computed correctly
origin = NULL, right = NULL) {
Expand All @@ -146,8 +147,8 @@ StatBin <- ggproto("StatBin", Stat,

keep <- switch(
drop,
none = bins$count != 0,
inner = inner_runs(bins$count != 0),
all = bins$count != 0,
extremes = inner_runs(bins$count != 0),
TRUE
)
bins <- vec_slice(bins, keep)
Expand Down
10 changes: 5 additions & 5 deletions man/geom_histogram.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/testthat/test-stat-bin.R
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@ test_that("stat_bin(drop) options work as intended", {
p <- ggplot(data.frame(x = c(1, 2, 2, 3, 5, 6, 6, 7)), aes(x)) +
scale_x_continuous(limits = c(-1, 9))

ld <- layer_data(p + geom_histogram(binwidth = 1, drop = "all"))
ld <- layer_data(p + geom_histogram(binwidth = 1, drop = "none"))
expect_equal(ld$x, -1:9)

ld <- layer_data(p + geom_histogram(binwidth = 1, drop = "inner"))
ld <- layer_data(p + geom_histogram(binwidth = 1, drop = "extremes"))
expect_equal(ld$x, c(1:7))

ld <- layer_data(p + geom_histogram(binwidth = 1, drop = "none"))
ld <- layer_data(p + geom_histogram(binwidth = 1, drop = "all"))
expect_equal(ld$x, c(1:3, 5:7))
})

Expand Down
Loading