Last data update: 2014.03.03

R: Create a Completely Empty Theme
theme_blankR Documentation

Create a Completely Empty Theme

Description

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

Usage

theme_blank(font_size = 12, font_family = "serif", legend = "none")

Arguments

font_size

Overall font size. Default is 12.

font_family

Default font family.

legend

the legend position.

Value

The theme.

Examples

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

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(SciencesPo)
Loading required package: ggplot2
initializing ... done

> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/SciencesPo/theme_blank.Rd_%03d_medium.png", width=480, height=480)
> ### Name: theme_blank
> ### Title: Create a Completely Empty Theme
> ### Aliases: theme_blank
> 
> ### ** Examples
> 
> # 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")
[1] TRUE
> 
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>