Skip to content
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