ggpubfigs is a ggplot2 extension that helps create publication ready figures for the life sciences.
Importantly, ggpubfigs implements themes and color palettes that are both aesthetically pleasing and colorblind friendly.
If you found ggpubfigs helpful, please cite: ggpubfigs: Colorblind-Friendly Color Palettes and ggplot2
Graphic System Extensions for Publication-Quality Scientific
Figures. DOI: 10.1128/MRA.00871-21
Install
Quick Start
Color palettes
Palette Swatches and Hex Codes
Themes
FAQ
Change Log
Versioning
Acknowledgements
# execute this command only the first time you use ggpubfigs
devtools::install_github("JLSteenwyk/ggpubfigs")
# load ggpubfigs
library(ggpubfigs)These quick start examples demonstrate how to implement two aesthetically pleasing themes and color palettes.
# using the "ito_seven" color palette and theme_big_simple()
ggplot(mtcars, aes(factor(carb), fill=factor(cyl))) + geom_bar() + scale_fill_manual(values = friendly_pal("ito_seven")) + theme_big_simple()# using the "bright_seven" color palette and theme_big_grid()
ggplot(mtcars, aes(factor(carb), fill=factor(cyl))) + geom_bar() + scale_fill_manual(values = friendly_pal("bright_seven")) + theme_big_grid()Color palettes are all colorblind friendly. Thus, your figures will be accessible to more people, which is inarguably better for your audience and you.
Color palettes are named using the following scheme: identifier (underscore) number of colors in color palette.
Palette swatches and hex codes are shown below for quick visual comparison.
To use these colorblind friendly color palettes, use the following command as an example for both discrete and continuous purposes:
ggplot(mtcars, aes(factor(carb), fill=factor(cyl))) + geom_bar() + scale_fill_manual(values = friendly_pal("contrast_three"))pal <- friendly_pal("contrast_three", 50, type = "continuous")
image(volcano, col = pal)theme_grid()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_grid()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_grid()theme_big_grid()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_big_grid()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_big_grid()theme_simple()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_simple()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_simple()theme_big_simple()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_big_simple()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_big_simple()theme_grey()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_grey()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_grey()theme_black()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_black()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_black()theme_blue()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_blue()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_blue()theme_red()
ggplot(iris, aes(Sepal.Length, Petal.Width, color = Species)) + geom_point() + theme_red()ggplot(iris, aes(Sepal.Length, fill = Species)) + geom_histogram() + theme_red()Can I submit color palettes or themes to be incorporated into ggpubfigs?
Yes! Submissions are encouraged, please feel free to contact me via twitter or from my contact information.
I would like to thank the blooming R community for all the very helpful online forums, discussions, and open source books that have helped me learn R.
I would also like to acknowledge that some of the example usage and color palette code was developed based on open source code from the wes anderson color palette package.
For full release notes, see NEWS.md.
- Added
tableau_ten,glasbey_twelve,viridis_eight, andcividis_eight. - Added test coverage for new palette availability and expected sizes.
- Updated palette documentation/man pages and README palette table.
- Added
testthatcoverage for palette and theme behavior. - Migrated theme internals to
linewidthinelement_line()andelement_rect(). - Fixed
friendly_pal()documentation to referenceito_seven.
- Added CI-based R compatibility checks for R 4.4, R 4.5, and devel.
- Fixed CI dependency setup and package metadata/import issues for
R CMD check. - Updated build ignore settings and README R-version testing badge.




















