Skip to content

alberto-mateos-mo/unam.theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unam.theme

Lifecycle: maturing

The goal of unam.theme is to provide a ggplot2 theme using UNAM’s graphic identity.

Academic/Non-commercial use only.

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("alberto-mateos-mo/unam.theme")

Example

The custom theme and scales are used as follows:

library(unam.theme)
library(ggplot2)

ggplot(iris)+
  geom_point(aes(x = Sepal.Length, y = Petal.Length, colour = Species), size = 3)+
  scale_colour_unam()+
  theme_unam()

Using secondary palette:

library(unam.theme)
library(ggplot2)

ggplot(iris)+
  geom_point(aes(x = Sepal.Length, y = Petal.Length, colour = Species), size = 3)+
  scale_colour_unam(palette = "secondary")+
  theme_unam()

Using a continuous scale:

library(unam.theme)
library(ggplot2)

ggplot(iris)+
  geom_point(aes(x = Sepal.Length, y = Petal.Length, colour = Petal.Width), size = 3)+
  scale_colour_unam(palette = "basic", discrete = FALSE)+
  theme_unam()

Note: UNAM’s graphic image consists of at most three colours: #003D79, #D59F0F and #B6985E, additional colours were selected using colormind.io site.