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_budapestuse Google Font's Limelight? Default isTRUE.- ...
additional parameters to pass to
ggplot2::theme()- asteroid_city_font
should
theme_asteroid_cityuse Google Font's Bungee Shade? Default isTRUE.- french_dispatch_font
should
theme_french_dispatchuse Google Font's Montserrat Subrayada? Default isTRUE.- moonrise_kingdom_font
should
theme_moonrise_kingdomuse Google Font's Lobster? Default isTRUE.
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()