Tokens aesthetics mapping
token_aes(
size = token_scale(),
color = token_scale(),
image = token_scale(),
opacity = token_scale(),
shape = "circle",
attributes = list()
)
The scale used for the token size.
The scale used for the token color,
The scale used for the token image.
The scale used for the token opacity.
The (fixed) SVG shape to be used to draw tokens. Can be either 'circle' (default), 'rect' or 'image'. In the latter case the image URL needs to be specified as parameter 'token_image'.
A list of additional (fixed) SVG attributes to be added to each token.
An aesthetics mapping for `animate_process`.
data(example_log)
# Change default token sizes / shape
animate_process(example_log, mapping = token_aes(size = token_scale(12), shape = "rect"))
# \donttest{
# Change default token color
animate_process(example_log, mapping = token_aes(color = token_scale("red")))
# Change default token opacity
animate_process(example_log, mapping = token_aes(opacity = token_scale("0.2")))
# Change default token image (GIFs work too)
animate_process(example_log,
mapping = token_aes(shape = "image",
size = token_scale(10),
image = token_scale("https://upload.wikimedia.org/wikipedia/commons/5/5f/Pacman.gif")))
# A more elaborate example with a secondary data frame
library(eventdataR)
data(traffic_fines)
# Change token color based on a numeric attribute, here the nonsensical 'time' of an event
animate_process(edeaR::filter_trace_frequency(bupaR::sample_n(traffic_fines,1000),percentage=0.95),
legend = "color", mode = "relative",
mapping = token_aes(color = token_scale("amount",
scale = "linear",
range = c("yellow","red"))))
# }