1 Introduction

My eyes were finally opened and I understood nature. I learned at the same time to love it.

— Claude Monet

The ggsci package offers a collection of high-quality color palettes inspired by colors used in scientific journals and science fiction TV shows.

2 Available Palettes

The color palettes in ggsci are available as ggplot2 scales. For discrete palettes, the scales are named as:

We also provided aliases, such as scale_colour_palname() for scale_color_palname(). All available palettes are listed in the table below:

Name Scales Palette Types Palette Generator

NPG

scale_color_npg() scale_fill_npg()

"nrc"

pal_npg()

AAAS

scale_color_aaas() scale_fill_aaas()

"default"

pal_aaas()

Lancet

scale_color_lancet() scale_fill_lancet()

"lanonc"

pal_lancet()

JCO

scale_color_jco() scale_fill_jco()

"default"

pal_jco()

UCSCGB

scale_color_ucscgb() scale_fill_ucscgb()

"default"

pal_ucscgb()

UChicago

scale_color_uchicago() scale_fill_uchicago()

"default" "light" "dark"

pal_uchicago()

The Simpsons

scale_color_simpsons() scale_fill_simpsons()

"springfield"

pal_simpsons()

Rick and Morty

scale_color_rickandmorty() scale_fill_rickandmorty()

"schwifty"

pal_rickandmorty()

Next, we use scatterplots with smooth curves, and bar plots to demonstrate the discrete color palettes:

library("ggsci")
library("ggplot2")
library("gridExtra")

data("diamonds")

p1 = ggplot(subset(diamonds, carat >= 2.2),
       aes(x = table, y = price, colour = cut)) +
  geom_point(alpha = 0.7) +
  geom_smooth(alpha = 0.05, size = 1, span = 1) +
  theme_bw()

p2 = ggplot(subset(diamonds, carat > 2.2 & depth > 55 & depth < 70), 
       aes(x = depth, fill = cut)) +
  geom_histogram(colour = "black", binwidth = 1, position = "dodge") +
  theme_bw()

2.1 NPG

The NPG palette is inspired by journals published by Nature Publishing Group:

p1_npg = p1 + scale_color_npg()
p2_npg = p2 + scale_fill_npg()
grid.arrange(p1_npg, p2_npg, ncol = 2)

2.2 AAAS

The AAAS palette is inspired by journals published by American Association for the Advancement of Science:

p1_aaas = p1 + scale_color_aaas()
p2_aaas = p2 + scale_fill_aaas()
grid.arrange(p1_aaas, p2_aaas, ncol = 2)

2.3 Lancet

The Lancet palette is inspired by Lancet journals, such as Lancet Oncology:

p1_lancet = p1 + scale_color_lancet()
p2_lancet = p2 + scale_fill_lancet()
grid.arrange(p1_lancet, p2_lancet, ncol = 2)

2.4 JCO

The JCO palette is inspired by the colors used in Journal of Clinical Oncology:

p1_jco = p1 + scale_color_jco()
p2_jco = p2 + scale_fill_jco()
grid.arrange(p1_jco, p2_jco, ncol = 2)

2.5 UCSCGB

The UCSCGB palette is from the colors used by UCSC Genome Browser for representing chromosomes. This palette has been intensively used in visualizations produced by Circos.

p1_ucscgb = p1 + scale_color_ucscgb()
p2_ucscgb = p2 + scale_fill_ucscgb()
grid.arrange(p1_ucscgb, p2_ucscgb, ncol = 2)

2.6 UChicago

The UChicago palette is based on the colors used by The University of Chicago. There are three palette types (default, light, dark) available.

p1_uchicago = p1 + scale_color_uchicago()
p2_uchicago = p2 + scale_fill_uchicago()
p1_uchicago_light = p1 + scale_color_uchicago("light")
p2_uchicago_light = p2 + scale_fill_uchicago("light")
p1_uchicago_dark  = p1 + scale_color_uchicago("dark")
p2_uchicago_dark  = p2 + scale_fill_uchicago("dark")
grid.arrange(p1_uchicago,       p2_uchicago,
             p1_uchicago_light, p2_uchicago_light,
             p1_uchicago_dark,  p2_uchicago_dark,
             ncol = 2, nrow = 3)

2.7 The Simpsons

This palette is inspired by the colors used in the TV show The Simpsons:

p1_simpsons = p1 + scale_color_simpsons()
p2_simpsons = p2 + scale_fill_simpsons()
grid.arrange(p1_simpsons, p2_simpsons, ncol = 2)

2.8 Rick and Morty

This palette is inspired by the colors used in the TV show Rick and Morty:

p1_rickandmorty = p1 + scale_color_rickandmorty()
p2_rickandmorty = p2 + scale_fill_rickandmorty()
grid.arrange(p1_rickandmorty, p2_rickandmorty, ncol = 2)

3 Non-ggplot2 Graphics

To apply the color palettes in ggsci to other graphics systems (such as base graphics and lattice graphics), simply use the palette generator functions in the table above. For example:

mypal = pal_npg("nrc", alpha = 0.7)(9)
mypal
## [1] "#E64B35B2" "#4DBBD5B2" "#00A087B2" "#3C5488B2" "#F39B7FB2" "#8491B4B2"
## [7] "#91D1C2B2" "#DC0000B2" "#7E6148B2"
library("scales")
show_col(mypal)

You will be able to use the generated hex color codes for such graphics systems accordingly. The transparent level of the entire palette is easily adjustable via the argument "alpha" in every generator or scale function.

4 Discussion

Please note some of the palettes might not be the best choice for certain purposes, such as color-blind safe, photocopy safe, or print friendly. If you do have such considerations, you might want to check out color palettes like ColorBrewer and viridis.

The color palettes in this package are solely created for research purposes. The authors are not responsible for the usage of such palettes.


Project website: ggsci.net