Last active
March 16, 2017 18:59
-
-
Save bhive01/c1d605efb5368e7dbbe1a3d294052530 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tibble) | |
| shapes <- | |
| tibble( | |
| pch = c(1:20), | |
| shape_name = c( | |
| "circle", | |
| "triangle", | |
| "cross", | |
| "x", | |
| "diamond", | |
| "triangleinvert", | |
| "xsquare", | |
| "asterisk", | |
| "crossdiamond", | |
| "crosscircle", | |
| "star", | |
| "crosssquare", | |
| "xcircle", | |
| "trianglesquare", | |
| "squarefill", | |
| "circlefill", | |
| "trianglefill", | |
| "diamondfill", | |
| "circlefill1", | |
| "circlefill2" | |
| ) | |
| ) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe the "fill" ones should be "fillsquare" etc?