| gglabel | R Documentation |
Label image using ggplot2::annotate. All arguments are vectorised over the stimuli and values are recycled or truncated if there are fewer or more than stimuli.
gglabel(stimuli, label = TRUE, x = 0.5, y = 0.95, geom = "text", ...)
stimuli |
list of stimuli |
label |
a vector of the label text(s) or TRUE to use stimlist names |
x |
x-coordinate for label anchor (left is 0); values <= 1 are interpreted as proportions of width |
y |
y-coordinate for label anchor (bottom is 0); values <= 1 are interpreted as proportions of height |
geom |
the geom to use |
... |
further arguments to pass to |
stimlist with labelled images
label() for a labeller using syntax like magick::image_annotate
Visualisation functions
as_ggplot(),
draw_tem(),
label(),
mlabel(),
plot.stimlist(),
plot.stim(),
plot_rows(),
plot_stim()
stimuli <- demo_stim()
# label with image names
# the default text size in ggplot is tiny
gglabel(stimuli)
# add a watermark
gglabel(stimuli,
label = "watermark",
x = 0.5,
y = 0.5,
geom = "text",
size = 30,
color = "black",
angle = -30,
alpha = 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.