Description Usage Arguments Value Author(s) Examples
The theme created by this function shows nothing but the plot panel.
1 | theme_blank(base_size = 12, base_family = "serif", legend = "none")
|
base_size |
overall font size. Default is 12. |
base_family |
a name for default font family. |
legend |
the legend position. |
The theme.
Daniel Marcelino [aut, cre]
1 2 3 4 5 6 7 8 | # plot with small amount of remaining padding
qplot(1:10, (1:10)^2) + theme_blank()
# remaining padding removed
qplot(1:10, (1:10)^2) + theme_blank() + labs(x = NULL, y = NULL)
# Check that it is a complete theme
attr(theme_blank(), "complete")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.