Skip to contents

This function generates a customized theme for ggplot2 plots. It modifies elements such as legend position, axis text, and line colors.

Usage

plot_theme()

Value

A ggplot2::theme object that can be added to ggplot2 plots.

Examples

if (FALSE) {
  ggplot(data, aes(x, y)) +
  geom_line() +
  plot_theme()
}