Is there a way to specify or define a new/different shape to use in ggplot2
?
I am thinking of creating or loading a .png or other file format into R and using it as a value to the shape argument. Something like this
my_shape = load("my little weird shape")
ggplot(data = data, aes(x, y)) +
geom_point(shape = my_shape, aes(color = variable))
I am trying to generate a graph such as
by plotting and filling the shapes of the little human bodies. Any thoughts?