This function creates a brownian motion on each row of the artwork and colors it according to the height of the motion.
canvas_stripes(
colors,
n = 300,
H = 1,
burnin = 1
)
a string or character vector specifying the color(s) used for the artwork.
a positive integer specifying the length of the brownian motion (effectively the width of the artwork).
a positive value specifying the square of the standard deviation of each step in the motion.
a positive integer specifying the number of steps to discard before filling each row.
A ggplot
object containing the artwork.
colorPalette
# \donttest{
set.seed(1)
# Simple example
canvas_stripes(colors = colorPalette("random", n = 10))
# }