Skip to contents

Provides a consistent and clean visual style for plots generated within this package. This theme builds on theme_classic() and adjusts text sizes and margins for better readability in figures.

Usage

theme_spneigh()

Value

A ggplot2 theme object that can be added to ggplot visualizations.

Examples

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