Skip to contents

This is a ggplot() theme with serif fonts and directed arrows.

Usage

ggserif(base_size = 14)

Arguments

base_size

Base size of the plot. It can be modified but I usually do not touch it.

Value

NULL The function doesn't return any value.

Examples

# Set theme globally by
ggplot2::theme_set(ggserif())

# Or use it for a single plot
ggplot2::ggplot(iris, ggplot2::aes(x = Sepal.Length, y = Sepal.Width, colour = Species)) +
ggplot2::geom_point() +
ggplot2::theme_set(ggserif())