theme_clarity: A clean theme based on ggthemes::theme_fivethirtyeight, but...

Description Usage Arguments Examples

Description

A clean theme based on ggthemes::theme_fivethirtyeight, but with a white background, axis titles, and a vertical legend on the right.

Usage

1
theme_clarity(base_size = 20, base_family = "sans")

Arguments

base_size

base font size

base_family

base font family

Examples

1
2
3
4
5
6
7
8
library(ggplot2)
library(eclthemes)

mtcars$cyl <- factor(mtcars$cyl)

ggplot(mtcars, aes(mpg, group=cyl)) +
  geom_density(alpha=0.5, aes(color=cyl, fill=cyl)) +
  theme_clarity(base_size=14)

eclarke/eclthemes documentation built on May 15, 2019, 7:54 p.m.