Skip to content

#4173 lambda functions in discrete scales & facets #4188

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 7 commits into from
May 7, 2021
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
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@

* The scale arguments `limits`, `breaks`, `minor_breaks`, `labels`, `rescaler`
and `oob` now accept purrr style lambda notation (@teunbrand, #4427).

* `as_labeller()` (and therefore also `labeller()`) now handles functions in
purrr-style lambda notation (@netique, #4188).

# ggplot2 3.3.3
This is a small patch release mainly intended to address changes in R and CRAN.
Expand Down
2 changes: 2 additions & 0 deletions R/labeller.r
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,8 @@ as_labeller <- function(x, default = label_value, multi_line = TRUE) {
x(labels)
} else if (is.function(x)) {
default(lapply(labels, x))
} else if (is.formula(x)) {
default(lapply(labels, as_function(x)))
} else if (is.character(x)) {
default(lapply(labels, function(label) x[label]))
} else {
Expand Down