plotflow (version 0.2.1)

theme_black: ggplot2 Theme with No Background or Gridlines.

Description

A ggplot2 theme with no background and no gridlines.

Usage

theme_black(base_size = 12, base_family = "")

Arguments

base_size

The size to use for text. Various textual components are scaled off of this value.

base_family

The base font family.

References

http://jonlefcheck.net/2013/03/11/black-theme-for-ggplot2-2

See Also

theme

Examples

Run this code
# NOT RUN {
ggplot(mtcars, aes(factor(cyl))) + geom_bar(fill="white") + theme_black()
dat <- data.frame(y = c(austres), time = time(austres))
ggplot(dat, aes(time, y)) + scale_x_continuous() +
    geom_line(color="lightblue", size=1) + theme_black()

# }
# NOT RUN {
library(maps)
crimes <- data.frame(state = tolower(rownames(USArrests)), USArrests)
states_map <-map_data("state")

ggplot(crimes, aes(map_id = state)) +
    geom_map(aes(fill = Murder), map = states_map) +
    expand_limits(x = states_map$long, y = states_map$lat) +
    theme_black() +
    scale_fill_gradient(low="grey10", high="white")
# }

Run the code above in your browser using DataLab