library(ggplot2)
library(ggthemes)
# Basic plot
<- ggplot(mpg, aes(x=displ, y=hwy, color=class)) +
p geom_point() +
labs(title="Default Theme")
p
ggplot2 Themes
Introduction
In this document, we will explore various themes and styles available in ggplot2
.
Below are examples of applying different basic themes to your plot:
Theme Gray
+ theme_gray() +
p labs(title="Theme Gray")
Theme Dark-on-light
+ theme_bw() +
p labs(title="Theme BW")
Theme Linedraw
+ theme_linedraw() +
p labs(title="Theme Linedraw")
Theme Light
+ theme_light() +
p labs(title="Theme Light")
Theme Dark
+ theme_dark() +
p labs(title="Theme Dark")
Theme Minimal
+ theme_minimal() +
p labs(title="Theme Minimal")
Theme Classic
+ theme_classic() +
p labs(title="Theme Classic")
Theme Void
+ theme_void() +
p labs(title="Theme Void")
Theme Test
+ theme_test() +
p labs(title="Theme Test")
Themes in ggthemes
Below are examples of applying additional themes using package ggthemes
to your plot:
Theme Economist
+ theme_economist() +
p labs(title="Theme Economist") +
scale_color_economist()
Theme Economist - White
+ theme_economist_white() +
p labs(title="Theme Economist - White") +
scale_color_economist()
Theme Excel
+ theme_excel() +
p labs(title="Theme Excel") +
scale_color_excel()
Theme Excel - New
+ theme_excel_new() +
p labs(title="Theme Excel - New") +
scale_color_excel_new()
Theme LibreOffice Calc
+ theme_calc() +
p labs(title="Theme Calc") +
scale_color_calc() +
scale_shape_calc()
Theme Highcharts
+ theme_hc() +
p labs(title="Theme Highcharts") +
scale_color_hc()
Theme Google Docs
+ theme_gdocs() +
p labs(title="Theme Google Docs") +
scale_color_gdocs()
Theme Clean
+ theme_clean() +
p labs(title="Theme Clean") +
scale_color_canva()
Theme 538
+ theme_fivethirtyeight() +
p labs(title="Theme 538")
Theme igray
+ theme_igray() +
p labs(title="Theme igray")
Theme few
+ theme_few() +
p labs(title="Theme few") +
scale_color_few()
Theme Solarized
# light
+ theme_solarized() +
p labs(title="Theme Solarized") +
scale_color_solarized()
# light2
+ theme_solarized_2() +
p labs(title="Theme Solarized2") +
scale_color_solarized()
# dark
+ theme_solarized(light = FALSE) +
p labs(title="Theme Solarized Dark") +
scale_color_solarized()
Theme tufte
+ theme_tufte() +
p labs(title="Theme tufte")
Theme Stata
+ theme_stata() +
p labs(title="Theme Stata") +
scale_color_stata() +
scale_shape_stata()
Theme Wall Street Journal (WSJ)
+ theme_wsj() +
p labs(title="Theme Wall Street Journal")
Theme Pander
+ theme_pander() +
p labs(title="Theme Pander") +
scale_color_pander()
Theme Tidyquant
library(tidyquant)
# Tidyquant - basic
+ theme_tq() +
p labs(title="Theme Tidyquant") +
scale_color_tq()
# dark
+ theme_tq_dark() +
p labs(title="Theme Tidyquant Dark") +
scale_color_tq()
# green
+ theme_tq_green() +
p labs(title="Theme Tidyquant Green") +
scale_color_tq()
Custom Theme
<- theme(
custom_theme plot.title = element_text(size = 14, face = "bold", hjust = 0.5),
axis.title = element_text(size = 12, face = "bold"),
axis.text = element_text(size = 10),
panel.background = element_rect(fill = "white"),
panel.grid.major = element_line(color = "grey", linewidth = 0.5),
panel.grid.minor = element_line(color = "lightgrey", linewidth = 0.25)
)
+ custom_theme + labs(title = "Custom Theme") p