Last updated: 2024-03-25


# Load ggmitji 
library(ggmitji)

# Load patchwork (to put plots together)
library(patchwork)
l = draw_polygon(shape = "L", color = "Black", fill = NA)
s = draw_polygon(shape = "square", color = "red", fill = "cornflowerblue")
t = draw_polygon(shape = "triangle", color = "Black", fill = "pink")
c = draw_polygon(shape = "circle", color = "Black", fill = "yellow")
d = draw_polygon(shape = "diamond", color = "Black", fill = "red")
h = draw_polygon(shape = "heart", color = NA, fill = "red")
(l + s + t + c + h + d)