theme_karl {broman} | R Documentation |
Karl's ggplot2 theme
Description
Karl's ggplot2 theme: black border and no ticks
Usage
theme_karl(base_size = 12, base_family = "", ...)
karl_theme(base_size = 12, base_family = "", ...)
Arguments
base_size |
Base font size |
base_family |
Base font family |
... |
Passed to |
Value
An object as returned by ggplot2::theme()
See Also
Examples
library(ggplot2)
mtcars$cyl <- factor(mtcars$cyl)
ggplot(mtcars, aes(y=mpg, x=disp, color=cyl)) +
geom_point() + theme_karl()
[Package broman version 0.84 Index]