copy {ggblend} | R Documentation |
Copy layers then adjust params and aesthetics (Layer operation)
Description
A layer operation for copying and then adjusting the params and aesthetic mappings of a layer-like object.
Usage
copy_over(object, mapping = aes(), ...)
copy_under(object, mapping = aes(), ...)
Arguments
object |
One of:
|
mapping |
An aesthetic created using |
... |
|
Details
These are shortcuts for duplicating a layer and then applying adjust()
.
Specifically:
-
copy_over(...)
is equivalent to1 + adjust(...)
-
copy_under(...)
is equivalent toadjust(...) + 1
Value
A layer-like object (if object
is layer-like) or an operation (if not).
See Also
operation for a description of layer operations.
Other layer operations:
adjust
,
affine_transform
,
blend
,
nop
,
partition()
Examples
library(ggplot2)
# here we use copy_under() to create a copy of
# the stat_smooth layer, putting a white outline around it.
set.seed(1234)
k = 1000
data.frame(
x = seq(1, 10, length.out = k),
y = rnorm(k, seq(1, 2, length.out = k) + c(0, 0.5)),
g = c("a", "b")
) |>
ggplot(aes(x, y, color = g)) +
geom_point() +
stat_smooth(method = lm, formula = y ~ x, linewidth = 1.5, se = FALSE) *
copy_under(aes(group = g), color = "white", linewidth = 4) +
scale_color_brewer(palette = "Dark2")