Skip to contents

Wes Anderson Movies Inspired Themes

Usage

theme_grand_budapest(grand_budapest_font = TRUE, ...)

theme_asteroid_city(asteroid_city_font = TRUE, ...)

theme_french_dispatch(french_dispatch_font = TRUE, ...)

theme_moonrise_kingdom(moonrise_kingdom_font = TRUE, ...)

Arguments

grand_budapest_font

should theme_grand_budapest use Google Font's Limelight? Default is TRUE.

...

additional parameters to pass to ggplot2::theme()

asteroid_city_font

should theme_asteroid_city use Google Font's Bungee Shade? Default is TRUE.

french_dispatch_font

should theme_french_dispatch use Google Font's Montserrat Subrayada? Default is TRUE.

moonrise_kingdom_font

should theme_moonrise_kingdom use Google Font's Lobster? Default is TRUE.

Value

a ggplot2

theme element

Examples

library(ggplot2)

ggplot(data = data.frame(x = rnorm(50, 0, 1), y = rnorm(50,0,1)), aes(x = x, y = y)) +
  geom_smooth(method = 'lm', color = '#890000') +
  geom_point() +
  labs(title = 'Grand Budapest Scatter Plot') +
  theme_grand_budapest()
#> `geom_smooth()` using formula = 'y ~ x'


ggplot(mpg, aes(cty)) +
geom_density(aes(fill=factor(cyl)), alpha=0.8) +
  labs(title="Density plot",
       subtitle="City Mileage Grouped by Number of cylinders",
       caption="Source: mpg",
       x="City Mileage",
       fill="# Cylinders") +
  theme_asteroid_city()