This article presents an awesome list of hexadecimal colors chart. You will also learn how to use these colors in R.
When creating a plot, colors can be specified using hexadecimal colors code, such as "#FFC00"
. The first two digits are the level of red, the next two are the level of green, and the last two specify the level of blue color.
Hexadecimal color code chart
The following chart illustrates example of hexadecimal color codes that you can choose:
(Source: http://www.visibone.com)
Using hexadecimal colors in R
- Usage in ggplots. The following R script changes the fill color (in box plots) and points color (in scatter plots).
library(ggplot2)
# Box plot
ggplot(iris, aes(Species, Sepal.Length)) +
geom_boxplot(fill = "#FFDB6D", color = "#C4961A") +
theme_minimal()
# Scatter plot
ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
geom_point(color = "#00AFBB") +
theme_minimal()
- Usage in R base plots:
barplot(c(2,5), col = c("#009999", "#0000FF"))
Conclusion
This article provides a list of hexadecimal colors and shows how to use them in R.
Recommended for you
This section contains best data science and self-development resources to help you on your path.
Books - Data Science
Our Books
- Practical Guide to Cluster Analysis in R by A. Kassambara (Datanovia)
- Practical Guide To Principal Component Methods in R by A. Kassambara (Datanovia)
- Machine Learning Essentials: Practical Guide in R by A. Kassambara (Datanovia)
- R Graphics Essentials for Great Data Visualization by A. Kassambara (Datanovia)
- GGPlot2 Essentials for Great Data Visualization in R by A. Kassambara (Datanovia)
- Network Analysis and Visualization in R by A. Kassambara (Datanovia)
- Practical Statistics in R for Comparing Groups: Numerical Variables by A. Kassambara (Datanovia)
- Inter-Rater Reliability Essentials: Practical Guide in R by A. Kassambara (Datanovia)
Others
- R for Data Science: Import, Tidy, Transform, Visualize, and Model Data by Hadley Wickham & Garrett Grolemund
- Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems by Aurelien Géron
- Practical Statistics for Data Scientists: 50 Essential Concepts by Peter Bruce & Andrew Bruce
- Hands-On Programming with R: Write Your Own Functions And Simulations by Garrett Grolemund & Hadley Wickham
- An Introduction to Statistical Learning: with Applications in R by Gareth James et al.
- Deep Learning with R by François Chollet & J.J. Allaire
- Deep Learning with Python by François Chollet
Version: Français
that nice