Created
September 7, 2017 10:58
-
-
Save keuv-grvl/5f70b0d258e2dd4fabdb88b23275c3b4 to your computer and use it in GitHub Desktop.
Generate a ggplot2 color palette
This file contains 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
# generate a ggplot2 color palette | |
gg_color_hue <- function(n) { | |
hues = seq(15, 375, length = n + 1) | |
hcl(h = hues, l = 65, c = 100)[1:n] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment