theme_edi {esmisc}R Documentation

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

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

[Package esmisc version 0.0.3 Index]