theme_selby: Themes for ggplot2 and stuff

Description Usage Arguments Examples

View source: R/themes.R

Description

To make everything look a bit nicer, we opt for Arial Narrow, white backgrounds and no tick marks.

Usage

1
theme_selby(base_size = 11, base_family = "Arial Narrow")

Arguments

base_size

base font size

base_family

base font family

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
library(ggplot2)
ggplot(iris) +
  aes(Petal.Width, Petal.Length, colour = Species) +
  geom_point() +
  ggtitle("Example plot of Fisher's iris data",
          subtitle = "Coloured by species of iris") +
  theme_selby()

## End(Not run)

Selbosh/scrooge documentation built on May 5, 2019, 8 p.m.