Learn R Programming

ggthemes (version 2.1.0)

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
Plot text 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