Learn R Programming

nima (version 0.3.0)

theme_nima: Nima's ggplot2 theme

Description

Nima's ggplot2 theme: black border and no ticks

Usage

theme_nima(base_size = 12, base_family = "", ...)

nima_theme(base_size = 12, base_family = "", ...)

Arguments

base_size

Base font size

base_family

Base font family

...

Passed to theme

Value

An object as returned by theme

See Also

theme

Examples

Run this code
# NOT RUN {
library(ggplot2)
mtcars$cyl <- factor(mtcars$cyl)
p <- ggplot(mtcars, aes(y=mpg, x = disp, color = cyl)) 
p <- p + geom_point() + theme_nima()
p

# }

Run the code above in your browser using DataLab