I was looking into the different shapes that can be passed into, say, geom_point()
and I found this old closed GH issue discussing about the ability of using names of shapes instead of a numeric value from 0 to 25. I know this is implemented and it works (e.g.:
ggplot(mtcars, aes(x = mpg, y = wt)) +
geom_point(shape = "triangle filled", fill = "steelblue")`
)
I was just wondering, is there an actual documentation that finalizes the list of the various names that can be fed into the shape
argument, instead of its numeric counterpart? I've looked around but haven't had luck something authoritative.