Friends tv series Inspired Theme
Arguments
- friends_font
should
theme_friends
use Google Font's Permanent Marker? Default isTRUE
.- ...
additional parameters to pass to
ggplot2::theme()
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') +
geom_point() +
labs(title = 'friends Scatter Plot') +
theme_friends()
#> `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_friends() +
scale_fill_friends_d()