theme_publish {envalysis}R Documentation

ggplot2 theme for scientific publications

Description

Themes set the general aspect of the plot such as the color of the background, grid lines, the size and color of fonts. This particular theme is based on the classic dark-on-light ggplot2 theme_bw and has been used for scientific publications.

Usage

theme_publish(base_size = 12, base_family = "", base_linewidth = 0.25, ...)

Arguments

base_size

base font size

base_family

base font family

base_linewidth

base line width for ticks and axes

...

further arguments to be passed to theme_bw

Author(s)

Zacharias Steinmetz

See Also

ggtheme theme_bw

Examples

library(ggplot2)
p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg,
     colour = factor(gear))) + facet_wrap( ~ am)
p
p + theme_publish()


[Package envalysis version 0.7.0 Index]