forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguide-bins.R
373 lines (328 loc) · 10.6 KB
/
guide-bins.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#' @include guide-legend.R
NULL
#' A binned version of guide_legend
#'
#' This guide is a version of the [guide_legend()] guide for binned scales. It
#' differs in that it places ticks correctly between the keys, and sports a
#' small axis to better show the binning. Like [guide_legend()] it can be used
#' for all non-position aesthetics though colour and fill defaults to
#' [guide_coloursteps()], and it will merge aesthetics together into the same
#' guide if they are mapped in the same way.
#'
#' @inheritParams guide_legend
#' @param show.limits Logical. Should the limits of the scale be shown with
#' labels and ticks. Default is `NULL` meaning it will take the value from the
#' scale. This argument is ignored if `labels` is given as a vector of
#' values. If one or both of the limits is also given in `breaks` it will be
#' shown irrespective of the value of `show.limits`.
#'
#' @section Use with discrete scale:
#' This guide is intended to show binned data and work together with ggplot2's
#' binning scales. However, it is sometimes desirable to perform the binning in
#' a separate step, either as part of a stat (e.g. [stat_contour_filled()]) or
#' prior to the visualisation. If you want to use this guide for discrete data
#' the levels must follow the naming scheme implemented by [base::cut()]. This
#' means that a bin must be encoded as `"(<lower>, <upper>]"` with `<lower>`
#' giving the lower bound of the bin and `<upper>` giving the upper bound
#' (`"[<lower>, <upper>)"` is also accepted). If you use [base::cut()] to
#' perform the binning everything should work as expected, if not, some recoding
#' may be needed.
#'
#' @return A guide object
#' @family guides
#' @export
#'
#' @examples
#' p <- ggplot(mtcars) +
#' geom_point(aes(disp, mpg, size = hp)) +
#' scale_size_binned()
#'
#' # Standard look
#' p
#'
#' # Remove the axis or style it
#' p + guides(size = guide_bins(
#' theme = theme(legend.axis.line = element_blank())
#' ))
#'
#' p + guides(size = guide_bins(show.limits = TRUE))
#'
#' my_arrow <- arrow(length = unit(1.5, "mm"), ends = "both")
#' p + guides(size = guide_bins(
#' theme = theme(legend.axis.line = element_line(arrow = my_arrow))
#' ))
#'
#' # Guides are merged together if possible
#' ggplot(mtcars) +
#' geom_point(aes(disp, mpg, size = hp, colour = hp)) +
#' scale_size_binned() +
#' scale_colour_binned(guide = "bins")
#'
guide_bins <- function(
# title
title = waiver(),
theme = NULL,
# general
position = NULL,
direction = NULL,
override.aes = list(),
reverse = FALSE,
order = 0,
show.limits = NULL,
...
) {
theme <- deprecated_guide_args(theme, ...)
if (!is.null(position)) {
position <- arg_match0(position, c(.trbl, "inside"))
}
new_guide(
# title
title = title,
theme = theme,
# general
position = position,
direction = direction,
override.aes = rename_aes(override.aes),
reverse = reverse,
order = order,
show.limits = show.limits,
# parameter
available_aes = c("any"),
...,
name = "bins",
super = GuideBins
)
}
#' @rdname ggplot2-ggproto
#' @format NULL
#' @usage NULL
#' @export
GuideBins <- ggproto(
"GuideBins", GuideLegend,
params = list(
title = waiver(),
# theming
theme = NULL,
default_axis = element_line("black", linewidth = (0.5 / .pt)),
default_ticks = element_line(inherit.blank = TRUE),
default_tick_length = unit(0.2, "npc"),
direction = NULL,
override.aes = list(),
reverse = FALSE,
order = 0,
show.limits = FALSE,
name = "bins",
hash = character(),
position = NULL,
direction = NULL
),
elements = c(
GuideLegend$elements,
list(
axis_line = "legend.axis.line",
ticks_length = "legend.ticks.length",
ticks = "legend.ticks"
)
),
extract_key = function(scale, aesthetic, show.limits = FALSE,
reverse = FALSE, ...) {
breaks <- scale$get_breaks()
parsed <- parse_binned_breaks(scale, breaks)
if (is.null(parsed)) {
return(parsed)
}
limits <- parsed$limits
breaks <- parsed$breaks
key <- data_frame(c(scale$map(parsed$bin_at), NA),
.name_repair = ~ aesthetic)
key$.value <- (seq_along(key[[1]]) - 1) / (nrow(key) - 1)
key$.show <- NA
labels <- scale$get_labels(breaks)
if (is.character(scale$labels) || is.numeric(scale$labels)) {
limit_lab <- c(NA, NA)
} else {
limit_lab <- scale$get_labels(limits)
}
if (!breaks[1] %in% limits) {
labels <- c(limit_lab[1], labels)
} else {
key$.show[1] <- TRUE
}
if (!breaks[length(breaks)] %in% limits) {
labels <- c(labels, limit_lab[2])
} else {
key$.show[nrow(key)] <- TRUE
}
key$.label <- labels
key <- vec_slice(key, !is.na(oob_censor_any(key$.value)))
return(key)
},
extract_params = function(scale, params,
title = waiver(), direction = NULL, ...) {
show.limits <- params$show.limits %||% scale$show.limits %||% FALSE
if (show.limits &&
(is.character(scale$labels) || is.numeric(scale$labels))) {
cli::cli_warn(c(paste0(
"{.arg show.limits} is ignored when {.arg labels} are given as a ",
"character vector."
), "i" = paste0(
"Either add the limits to {.arg breaks} or provide a function for ",
"{.arg labels}."
)))
show.limits <- FALSE
}
show.limits <- rep(show.limits, length.out = 2)
key <- params$key
show <- key$.show[c(1, nrow(key))]
show.limits <- ifelse(is.na(show), show.limits, show)
key$.show <- NULL
params$show.limits <- show.limits
if (params$reverse) {
key <- key[rev(seq_len(nrow(key))), , drop = FALSE]
key$.value <- 1 - key$.value
}
params$title <- scale$make_title(params$title %|W|% scale$name %|W|% title)
params$key <- key
params
},
setup_params = function(params) {
params <- GuideLegend$setup_params(params)
params$nrow <- params$ncol <- params$n_breaks <- params$n_key_layers <- 1
params
},
setup_elements = function(params, elements, theme) {
valid_position <- switch(
params$direction,
"horizontal" = c("bottom", "top"),
"vertical" = c("right", "left")
)
# Set defaults
theme <- replace_null(
theme,
legend.text.position = valid_position[1],
legend.ticks.length = params$default_tick_length,
legend.axis.line = params$default_axis,
legend.ticks = params$default_ticks
)
# Let the legend guide handle the rest
elements <- GuideLegend$setup_elements(params, elements, theme)
# Check text position
if (!elements$text_position %in% valid_position) {
cli::cli_abort(paste0(
"When {.arg direction} is {.val {params$direction}, ",
"{.arg legend.text.position} must be one of ",
"{.or {.val {valid_position}}}, not {.val {elements$text.position}}."
))
}
elements
},
build_labels = function(key, elements, params) {
n_labels <- length(key$.label)
if (n_labels < 1) {
return(list(labels = zeroGrob()))
}
key$.label[c(1, n_labels)[!params$show.limits]] <- ""
if (params$direction == "vertical") {
key$.value <- 1 - key$.value
}
list(labels = flip_element_grob(
elements$text,
label = key$.label,
x = unit(key$.value, "npc"),
margin_x = FALSE,
margin_y = TRUE,
flip = params$direction == "vertical"
))
},
build_ticks = function(key, elements, params, position = params$position) {
if (params$direction == "vertical") {
key$.value <- 1 - key$.value
}
key$.value[c(1, nrow(key))[!params$show.limits]] <- NA
Guide$build_ticks(key$.value, elements, params, elements$text_position)
},
build_decor = function(decor, grobs, elements, params) {
params$n_breaks <- nkeys <- nrow(params$key) - 1
dim <- if (params$direction == "vertical") c(nkeys, 1) else c(1, nkeys)
decor <- GuideLegend$build_decor(decor, grobs, elements, params)
sizes <- measure_legend_keys(
decor, nkeys, dim, byrow = FALSE,
default_width = elements$width_cm,
default_height = elements$height_cm
)
sizes <- lapply(sizes, function(x) rep_len(max(x), length(x)))
n_layers <- length(decor) / nkeys
key_id <- rep(seq_len(nkeys), each = n_layers)
key_nm <- paste("key", key_id, c("bg", seq_len(n_layers - 1)))
if (params$direction == "vertical") {
top <- key_id
left <- 1
} else {
top <- 1
left <- key_id
}
gt <- gtable(
widths = unit(sizes$widths, "cm"),
heights = unit(sizes$heights, "cm")
)
gt <- gtable_add_grob(gt, decor, t = top, l = left,
name = key_nm, clip = "off")
axis <- switch(
elements$text_position,
"top" = list(x = c(0, 1), y = c(1, 1)),
"bottom" = list(x = c(0, 1), y = c(0, 0)),
"left" = list(x = c(0, 0), y = c(0, 1)),
"right" = list(x = c(1, 1), y = c(0, 1))
)
axis <- element_grob(elements$axis_line, x = axis$x, y = axis$y)
list(keys = gt, axis_line = axis, ticks = grobs$ticks)
},
measure_grobs = function(grobs, params, elements) {
params$sizes <- list(
widths = sum( width_cm(grobs$decor$keys)),
heights = sum(height_cm(grobs$decor$keys))
)
GuideLegend$measure_grobs(grobs, params, elements)
}
)
parse_binned_breaks = function(scale, breaks = scale$get_breaks(),
even.steps = TRUE) {
breaks <- breaks[!is.na(breaks)]
if (length(breaks) == 0) {
return(NULL)
}
breaks <- sort(breaks)
if (is.numeric(breaks)) {
limits <- scale$get_limits()
if (!is.numeric(scale$breaks)) {
breaks <- breaks[!breaks %in% limits]
}
all_breaks <- unique0(c(limits[1], breaks, limits[2]))
bin_at <- all_breaks[-1] - diff(all_breaks) / 2
} else {
if (isFALSE(even.steps)) {
cli::cli_warn(paste0(
"{.code even.steps = FALSE} is not supported when used with a ",
"discrete scale."
))
}
bin_at <- breaks
nums <- as.character(breaks)
nums <- strsplit(gsub("\\(|\\)|\\[|\\]", "", nums), ",\\s?")
nums <- as.numeric(unlist(nums, FALSE, FALSE))
if (anyNA(nums)) {
cli::cli_abort(c(
"Breaks are not formatted correctly for a bin legend.",
"i" = "Use {.code (<lower>, <upper>]} format to indicate bins."
))
}
all_breaks <- nums[c(1, seq_along(breaks) * 2)]
limits <- all_breaks[ c(1, length(all_breaks))]
breaks <- all_breaks[-c(1, length(all_breaks))]
}
list(
breaks = breaks,
limits = limits,
bin_at = bin_at
)
}