ggtheme: Customized theme for ggplot.

Description Usage Arguments Details Value Author(s) Examples

Description

ggtheme creates a customized theme for ggplot.

Usage

1
ggtheme(color = "#990000")

Arguments

color

Desired text color for the theme.

Details

details.

Value

theme for being used with ggplot objects.

Author(s)

Erick A. Chacon-Montalvan

Examples

1
2
3
4
5
6
7
8
# Create a dataset
library(ggplot2)
data <- data.frame(x = rnorm(100))

# Plot variable x with custom theme
ggplot(data, aes(x)) +
  geom_histogram() +
  ggtheme()

ErickChacon/day2day documentation built on May 6, 2019, 4:03 p.m.