This function draws the predictions from a k-nearest neighbors algorithm trained on randomly generated continuous data.
canvas_gemstone(
colors,
n = 1000,
resolution = 500
)
a string or character vector specifying the color(s) used for the artwork.
a positive integer specifying the number of random data points to generate.
resolution of the artwork in pixels per row/column. Increasing the resolution increases the quality of the artwork but also increases the computation time exponentially.
A ggplot
object containing the artwork.
colorPalette
# \donttest{
set.seed(1)
# Simple example
canvas_gemstone(colors = colorPalette("dark3"))
# }