Description Usage Arguments Value See Also Examples
This theme uses Mozilla's Fira Sans as its font.
Save to pdf using firaSave()
.
1 | theme_fira(family = "Fira Sans")
|
family |
Change the font family. Defaults to Fira Sans |
ggplot theme
1 2 3 4 5 6 7 8 9 10 11 | library(ggplot2)
ggplot(mtcars, aes(x = mpg*0.43, y = wt*0.4535924, colour = factor(cyl))) +
geom_point(size = 2) +
labs(title = "Car weight vs efficiency",
subtitle = "Using sensible metrics",
x = "Efficiency (km/l)",
y = "Weight (1000 kg)",
colour = "Cylinders") +
theme_fira() +
scale_colour_fira()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.