ggplot2 (version 2.1.0)

rel: Relative sizing for theme elements

Description

Relative sizing for theme elements

Usage

rel(x)

Arguments

x
A number representing the relative size

Examples

Run this code
df <- data.frame(x = 1:3, y = 1:3)
ggplot(df, aes(x, y)) +
  geom_point() +
  theme(axis.title.x = element_text(size = rel(2.5)))

Run the code above in your browser using DataCamp Workspace