esmisc (version 0.0.3)

theme_edi: Custom ggplot2 theme

Description

Custom ggplot2 theme

Usage

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

Arguments

base_size
basefont size
base_family
base font family

Examples

Run this code
library(ggplot2)
p <- ggplot(mtcars) + 
 geom_point(aes(x = wt, y = mpg, 
colour=factor(gear))) + facet_wrap(~am)
p
p + theme_edi()

Run the code above in your browser using DataCamp Workspace