theme_blank: Create a Completely Empty Theme

Description Usage Arguments Value Author(s) Examples

Description

The theme created by this function shows nothing but the plot panel.

Usage

1
theme_blank(base_size = 12, base_family = "serif", legend = "none")

Arguments

base_size

overall font size. Default is 12.

base_family

a name for default font family.

legend

the legend position.

Value

The theme.

Author(s)

NA

Examples

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")

danielmarcelino/SciencesPo documentation built on Oct. 20, 2019, 1:15 a.m.