theme_nima {nima} | R Documentation |
Nima's plotting theme
Description
Nima's ggplot2 theme: white background, colors optimized
Usage
theme_nima(base_size = 14, base_family = "Helvetica")
nima_theme(base_size = 14, base_family = "Helvetica")
Arguments
base_size |
Base font size |
base_family |
Base font family |
Value
An object as returned by theme
See Also
Examples
library(ggplot2)
p <- ggplot(mtcars, aes(y = mpg, x = disp, color = factor(cyl)))
p <- p + geom_point() + scale_fill_nima() + scale_color_nima()
p <- p + theme_nima()
p
[Package nima version 0.6.2 Index]