This theme no longer builds on the Stephen Few theme from ggthemes, but now produces a chart without an enclosing box, to produce a good baseline for charting in R. Gets called as would any typical theme.

theme_optimum(base_size = 14, base_family = "")

Arguments

base_size

Anchor font size

base_family

Font family to use

See also

Other visualisation: multiplot

Examples

library(ggplot2) ggplot(data.frame(x=1:10,y=1:10),aes(x,y))+theme_optimum()+geom_line()