-
Notifications
You must be signed in to change notification settings - Fork 2k
/
layer.r
444 lines (383 loc) · 14.3 KB
/
layer.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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#' Create a new layer
#'
#' A layer is a combination of data, stat and geom with a potential position
#' adjustment. Usually layers are created using `geom_*` or `stat_*`
#' calls but it can also be created directly using this function.
#'
#' @export
#' @param mapping Set of aesthetic mappings created by [aes()] or
#' [aes_()]. If specified and `inherit.aes = TRUE` (the
#' default), it is combined with the default mapping at the top level of the
#' plot. You must supply `mapping` if there is no plot mapping.
#' @param data The data to be displayed in this layer. There are three
#' options:
#'
#' If `NULL`, the default, the data is inherited from the plot
#' data as specified in the call to [ggplot()].
#'
#' A `data.frame`, or other object, will override the plot
#' data. All objects will be fortified to produce a data frame. See
#' [fortify()] for which variables will be created.
#'
#' A `function` will be called with a single argument,
#' the plot data. The return value must be a `data.frame`, and
#' will be used as the layer data. A `function` can be created
#' from a `formula` (e.g. `~ head(.x, 10)`).
#' @param geom The geometric object to use display the data
#' @param stat The statistical transformation to use on the data for this
#' layer, as a string.
#' @param position Position adjustment, either as a string, or the result of
#' a call to a position adjustment function.
#' @param show.legend logical. Should this layer be included in the legends?
#' `NA`, the default, includes if any aesthetics are mapped.
#' `FALSE` never includes, and `TRUE` always includes.
#' It can also be a named logical vector to finely select the aesthetics to
#' display.
#' @param inherit.aes If `FALSE`, overrides the default aesthetics,
#' rather than combining with them. This is most useful for helper functions
#' that define both data and aesthetics and shouldn't inherit behaviour from
#' the default plot specification, e.g. [borders()].
#' @param check.aes,check.param If `TRUE`, the default, will check that
#' supplied parameters and aesthetics are understood by the `geom` or
#' `stat`. Use `FALSE` to suppress the checks.
#' @param params Additional parameters to the `geom` and `stat`.
#' @param key_glyph A legend key drawing function or a string providing the
#' function name minus the `draw_key_` prefix. See [draw_key] for details.
#' @param layer_class The type of layer object to be constructued. This is
#' intended for ggplot2 internal use only.
#' @keywords internal
#' @examples
#' # geom calls are just a short cut for layer
#' ggplot(mpg, aes(displ, hwy)) + geom_point()
#' # shortcut for
#' ggplot(mpg, aes(displ, hwy)) +
#' layer(
#' geom = "point", stat = "identity", position = "identity",
#' params = list(na.rm = FALSE)
#' )
#'
#' # use a function as data to plot a subset of global data
#' ggplot(mpg, aes(displ, hwy)) +
#' layer(
#' geom = "point", stat = "identity", position = "identity",
#' data = head, params = list(na.rm = FALSE)
#' )
#'
layer <- function(geom = NULL, stat = NULL,
data = NULL, mapping = NULL,
position = NULL, params = list(),
inherit.aes = TRUE, check.aes = TRUE, check.param = TRUE,
show.legend = NA, key_glyph = NULL, layer_class = Layer) {
if (is.null(geom))
abort("Attempted to create layer with no geom.")
if (is.null(stat))
abort("Attempted to create layer with no stat.")
if (is.null(position))
abort("Attempted to create layer with no position.")
# Handle show_guide/show.legend
if (!is.null(params$show_guide)) {
warn("`show_guide` has been deprecated. Please use `show.legend` instead.")
show.legend <- params$show_guide
params$show_guide <- NULL
}
# we validate mapping before data because in geoms and stats
# the mapping is listed before the data argument; this causes
# less confusing error messages when layers are accidentally
# piped into each other
if (!is.null(mapping)) {
mapping <- validate_mapping(mapping)
}
data <- fortify(data)
geom <- check_subclass(geom, "Geom", env = parent.frame())
stat <- check_subclass(stat, "Stat", env = parent.frame())
position <- check_subclass(position, "Position", env = parent.frame())
# Special case for na.rm parameter needed by all layers
if (is.null(params$na.rm)) {
params$na.rm <- FALSE
}
# Special case for key_glyph parameter which is handed in through
# params since all geoms/stats forward ... to params
if (!is.null(params$key_glyph)) {
key_glyph <- params$key_glyph
params$key_glyph <- NULL # remove to avoid warning about unknown parameter
}
# Split up params between aesthetics, geom, and stat
params <- rename_aes(params)
aes_params <- params[intersect(names(params), geom$aesthetics())]
geom_params <- params[intersect(names(params), geom$parameters(TRUE))]
stat_params <- params[intersect(names(params), stat$parameters(TRUE))]
all <- c(geom$parameters(TRUE), stat$parameters(TRUE), geom$aesthetics())
# Warn about extra params and aesthetics
extra_param <- setdiff(names(params), all)
if (check.param && length(extra_param) > 0) {
warn(glue("Ignoring unknown parameters: ", paste(extra_param, collapse = ", ")))
}
extra_aes <- setdiff(
mapped_aesthetics(mapping),
c(geom$aesthetics(), stat$aesthetics())
)
if (check.aes && length(extra_aes) > 0) {
warn(glue("Ignoring unknown aesthetics: ", paste(extra_aes, collapse = ", ")))
}
# adjust the legend draw key if requested
geom <- set_draw_key(geom, key_glyph)
ggproto("LayerInstance", layer_class,
geom = geom,
geom_params = geom_params,
stat = stat,
stat_params = stat_params,
data = data,
mapping = mapping,
aes_params = aes_params,
position = position,
inherit.aes = inherit.aes,
show.legend = show.legend
)
}
validate_mapping <- function(mapping) {
if (!inherits(mapping, "uneval")) {
msg <- paste0("`mapping` must be created by `aes()`")
if (inherits(mapping, "ggplot")) {
msg <- paste0(
msg, "\n",
"Did you use %>% instead of +?"
)
}
abort(msg)
}
# For backward compatibility with pre-tidy-eval layers
new_aes(mapping)
}
Layer <- ggproto("Layer", NULL,
geom = NULL,
geom_params = NULL,
stat = NULL,
stat_params = NULL,
data = NULL,
aes_params = NULL,
mapping = NULL,
position = NULL,
inherit.aes = FALSE,
print = function(self) {
if (!is.null(self$mapping)) {
cat("mapping:", clist(self$mapping), "\n")
}
cat(snakeize(class(self$geom)[[1]]), ": ", clist(self$geom_params), "\n",
sep = "")
cat(snakeize(class(self$stat)[[1]]), ": ", clist(self$stat_params), "\n",
sep = "")
cat(snakeize(class(self$position)[[1]]), "\n")
},
layer_data = function(self, plot_data) {
if (is.waive(self$data)) {
plot_data
} else if (is.function(self$data)) {
data <- self$data(plot_data)
if (!is.data.frame(data)) {
abort("Data function must return a data.frame")
}
data
} else {
self$data
}
},
# hook to allow a layer access to the final layer data
# in input form and to global plot info
setup_layer = function(self, data, plot) {
data
},
compute_aesthetics = function(self, data, plot) {
# For annotation geoms, it is useful to be able to ignore the default aes
if (self$inherit.aes) {
aesthetics <- defaults(self$mapping, plot$mapping)
} else {
aesthetics <- self$mapping
}
# Drop aesthetics that are set or calculated
set <- names(aesthetics) %in% names(self$aes_params)
calculated <- is_calculated_aes(aesthetics)
modifiers <- is_scaled_aes(aesthetics)
aesthetics <- aesthetics[!set & !calculated & !modifiers]
# Override grouping if set in layer
if (!is.null(self$geom_params$group)) {
aesthetics[["group"]] <- self$aes_params$group
}
scales_add_defaults(plot$scales, data, aesthetics, plot$plot_env)
# Evaluate aesthetics
env <- child_env(baseenv(), stage = stage)
evaled <- lapply(aesthetics, eval_tidy, data = data, env = env)
evaled <- compact(evaled)
# Check for discouraged usage in mapping
warn_for_aes_extract_usage(aesthetics, data[setdiff(names(data), "PANEL")])
# Check aesthetic values
nondata_cols <- check_nondata_cols(evaled)
if (length(nondata_cols) > 0) {
msg <- paste0(
"Aesthetics must be valid data columns. Problematic aesthetic(s): ",
paste0(vapply(nondata_cols, function(x) {paste0(x, " = ", as_label(aesthetics[[x]]))}, character(1)), collapse = ", "),
". \nDid you mistype the name of a data column or forget to add after_stat()?"
)
abort(msg)
}
n <- nrow(data)
if (n == 0) {
# No data, so look at longest evaluated aesthetic
if (length(evaled) == 0) {
n <- 0
} else {
n <- max(vapply(evaled, length, integer(1)))
}
}
check_aesthetics(evaled, n)
# Set special group and panel vars
if (empty(data) && n > 0) {
evaled$PANEL <- 1
} else {
evaled$PANEL <- data$PANEL
}
evaled <- lapply(evaled, unname)
evaled <- as_gg_data_frame(evaled)
evaled <- add_group(evaled)
evaled
},
compute_statistic = function(self, data, layout) {
if (empty(data))
return(new_data_frame())
params <- self$stat$setup_params(data, self$stat_params)
data <- self$stat$setup_data(data, params)
self$stat$compute_layer(data, params, layout)
},
map_statistic = function(self, data, plot) {
if (empty(data)) return(new_data_frame())
# Make sure data columns are converted to correct names. If not done, a
# column with e.g. a color name will not be found in an after_stat()
# evaluation (since the evaluation symbols gets renamed)
data <- rename_aes(data)
# Assemble aesthetics from layer, plot and stat mappings
aesthetics <- self$mapping
if (self$inherit.aes) {
aesthetics <- defaults(aesthetics, plot$mapping)
}
aesthetics <- defaults(aesthetics, self$stat$default_aes)
aesthetics <- compact(aesthetics)
new <- strip_dots(aesthetics[is_calculated_aes(aesthetics) | is_staged_aes(aesthetics)])
if (length(new) == 0) return(data)
# Add map stat output to aesthetics
env <- child_env(baseenv(), stat = stat, after_stat = after_stat)
stage_mask <- child_env(emptyenv(), stage = stage_calculated)
mask <- new_data_mask(as_environment(data, stage_mask), stage_mask)
mask$.data <- as_data_pronoun(mask)
new <- substitute_aes(new)
stat_data <- lapply(new, eval_tidy, mask, env)
# Check that all columns in aesthetic stats are valid data
nondata_stat_cols <- check_nondata_cols(stat_data)
if (length(nondata_stat_cols) > 0) {
msg <- paste0(
"Aesthetics must be valid computed stats. Problematic aesthetic(s): ",
paste0(vapply(nondata_stat_cols, function(x) {paste0(x, " = ", as_label(aesthetics[[x]]))}, character(1)), collapse = ", "),
". \nDid you map your stat in the wrong layer?"
)
abort(msg)
}
names(stat_data) <- names(new)
stat_data <- new_data_frame(compact(stat_data))
# Add any new scales, if needed
scales_add_defaults(plot$scales, data, new, plot$plot_env)
# Transform the values, if the scale say it's ok
# (see stat_spoke for one exception)
if (self$stat$retransform) {
stat_data <- scales_transform_df(plot$scales, stat_data)
}
cunion(stat_data, data)
},
compute_geom_1 = function(self, data) {
if (empty(data)) return(new_data_frame())
check_required_aesthetics(
self$geom$required_aes,
c(names(data), names(self$aes_params)),
snake_class(self$geom)
)
self$geom_params <- self$geom$setup_params(data, c(self$geom_params, self$aes_params))
self$geom$setup_data(data, self$geom_params)
},
compute_position = function(self, data, layout) {
if (empty(data)) return(new_data_frame())
params <- self$position$setup_params(data)
data <- self$position$setup_data(data, params)
self$position$compute_layer(data, params, layout)
},
compute_geom_2 = function(self, data) {
# Combine aesthetics, defaults, & params
if (empty(data)) return(data)
aesthetics <- self$mapping
modifiers <- aesthetics[is_scaled_aes(aesthetics) | is_staged_aes(aesthetics)]
self$geom$use_defaults(data, self$aes_params, modifiers)
},
finish_statistics = function(self, data) {
self$stat$finish_layer(data, self$stat_params)
},
draw_geom = function(self, data, layout) {
if (empty(data)) {
n <- nrow(layout$layout)
return(rep(list(zeroGrob()), n))
}
data <- self$geom$handle_na(data, self$geom_params)
self$geom$draw_layer(data, self$geom_params, layout, layout$coord)
}
)
is.layer <- function(x) inherits(x, "Layer")
check_subclass <- function(x, subclass,
argname = to_lower_ascii(subclass),
env = parent.frame()) {
if (inherits(x, subclass)) {
x
} else if (is.character(x) && length(x) == 1) {
name <- paste0(subclass, camelize(x, first = TRUE))
obj <- find_global(name, env = env)
if (is.null(obj) || !inherits(obj, subclass)) {
abort(glue("Can't find `{argname}` called '{x}'"))
} else {
obj
}
} else {
abort(glue(
"`{argname}` must be either a string or a {subclass} object, not {obj_desc(x)}"
))
}
}
obj_desc <- function(x) {
if (isS4(x)) {
paste0("an S4 object with class ", class(x)[[1]])
} else if (is.object(x)) {
if (is.data.frame(x)) {
"a data frame"
} else if (is.factor(x)) {
"a factor"
} else {
paste0("an S3 object with class ", paste(class(x), collapse = "/"))
}
} else {
switch(typeof(x),
"NULL" = "a NULL",
character = "a character vector",
integer = "an integer vector",
logical = "a logical vector",
double = "a numeric vector",
list = "a list",
closure = "a function",
paste0("a base object of type", typeof(x))
)
}
}
# helper function to adjust the draw_key slot of a geom
# if a custom key glyph is requested
set_draw_key <- function(geom, draw_key = NULL) {
if (is.null(draw_key)) {
return(geom)
}
if (is.character(draw_key)) {
draw_key <- paste0("draw_key_", draw_key)
}
draw_key <- match.fun(draw_key)
ggproto("", geom, draw_key = draw_key)
}