theme_white {add2ggplot}R Documentation

A ggplot theme with a white background.

Description

A ggplot theme with a white background.

Usage

theme_white()

Value

The function to use + in the ggplot workflow.

Examples

datasets::mtcars %>%
  ggplot2::ggplot(ggplot2::aes(mpg, disp)) +
  ggplot2::geom_point() +
  theme_white()

[Package add2ggplot version 0.3.0 Index]