Learn R Programming

ggthemes (version 2.2.1)

theme_fivethirtyeight: Theme inspired by fivethirtyeight.com plots

Description

Theme inspired by the plots on fivethirtyeight.com{http://fivethirtyeight.com}.

Usage

theme_fivethirtyeight(base_size = 12, base_family = "sans")

Arguments

base_size
base font size
base_family
base font family

Examples

Run this code
(qplot(hp, mpg, data= subset(mtcars, cyl != 5),
        geom="point", color = factor(cyl))
 + ggtitle("Horsepower, mpg and cylinders")
 + geom_smooth(method = "lm", se = FALSE)
 + scale_color_fivethirtyeight()
 + theme_fivethirtyeight())

Run the code above in your browser using DataLab