powered by
Create a voronoi plot based on x and y aspects.
x
y
fig_voronoi(g2, ..., data = NULL, inherit_asp = TRUE, name = NULL)
An object of class g2r as returned by g2r.
g2r
Any option, aesthetic (asp), or animation (Animation).
asp
Animation
A data.frame containing data to chart or a list.
data.frame
list
Whether to inherit aspects from g2r.
Name of figure, useful to apply functions to specific figures.
# NOT RUN { df <- dplyr::tibble( x = runif(25, 1, 500), y = runif(25, 1, 500), value = runif(25, 1, 500) ) g2(df, asp(x, y, color = value)) %>% fig_voronoi(axes = FALSE) # }
Run the code above in your browser using DataLab