Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whatalnk/30888b7a42e3f4bd1b4e to your computer and use it in GitHub Desktop.
Save whatalnk/30888b7a42e3f4bd1b4e to your computer and use it in GitHub Desktop.
A colorblind-friendly palette from "Cookbook for R"
cbPalette <- c("#999999", "#E69F00", "#56B4E9", "#009E73", "#F0E442", "#0072B2", "#D55E00", "#CC79A7")
  • with black
cbbPalette <- c("#000000", "#E69F00", "#56B4E9", "#009E73", "#F0E442", "#0072B2", "#D55E00", "#CC79A7")
plot(NULL, xlim=c(0,8), ylim=c(0,1),
     axes=FALSE, xlab="", ylab="")
rect(0:7, 0, 1:8, 1, col=cbPalette)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment