theme_lucas: Sarah's go-to theme for ggplot2

View source: R/plot.R

theme_lucasR Documentation

Sarah's go-to theme for ggplot2

Description

Requires the hrbrthemes package and the ⁠PT Sans⁠ and ⁠PT Sans Narrow⁠ fonts from Google Fonts.

Usage

theme_lucas()

Value

list of ggproto objects

Author(s)

Sarah Lucas salucas@umich.edu

Examples

library(ggplot2)
library(showtext)

# run once to download the PT Sans fonts
font_add_google(name = "PT Sans", family = "PT Sans")
font_add_google(name = "PT Sans Narrow", family = "PT Sans Narrow")
showtext_auto()

# make a plot with theme_lucas()
ggplot(mtcars) +
  aes(x = mpg, y = wt, color = cyl) +
  geom_point() +
  theme_lucas()

SchlossLab/mothuR documentation built on Aug. 29, 2023, 1:32 a.m.