theme_edi: Custom ggplot2 theme

Description Usage Arguments Examples

View source: R/theme_edi.R

Description

Custom ggplot2 theme

Usage

1
theme_edi(base_size = 14, base_family = "Helvetica")

Arguments

base_size

basefont size

base_family

base font family

Examples

1
2
3
4
5
6
library(ggplot2)
p <- ggplot(mtcars) + 
 geom_point(aes(x = wt, y = mpg, 
colour=factor(gear))) + facet_wrap(~am)
p
p + theme_edi()

esmisc documentation built on May 2, 2019, 3:26 p.m.

Related to theme_edi in esmisc...