Skip to contents

A clean ggplot2 theme based on theme_classic with marlin styling: bordered panel, light dashed gridlines, bold-italic titles, dark blue facet strip backgrounds, and italicised legend text.

Usage

theme_marlin(base_size = 14, ...)

Arguments

base_size

Numeric. Base font size in points. Default 14.

...

Additional arguments passed to ggplot2::theme_classic.

Value

A ggplot2 theme object. Add to a ggplot with +.

Examples

library(ggplot2)
ggplot(mtcars, aes(mpg, wt)) +
  geom_point() +
  theme_marlin()