for_presentation: Presentation style plots

Description Usage Arguments Value Author(s) Examples

View source: R/for_presentation.R

Description

This function adjusts the aspect ratio and default font size of a plot to improve readability when including figures in presentations.

Usage

1
for_presentation(plot, aspect_ratio = 0.5, font_increase = 1.5)

Arguments

plot

The ggplot2 object to be adjusted.

aspect_ratio

The desired ratio between the height and width of the plot, defaults to 0.5.

font_increase

The amount to increase the font size by, default to 1.5.

Value

A plot adjusted for presentation.

Author(s)

Maria Bekker-Nielsen Dunbar

Sam Abbott

Examples

1
2
3
4
5
6
plot <- plot_tb_burden_summary(
  countries = "United Kingdom",
  compare_all_regions = FALSE, compare_to_region = TRUE
)
plot # Original
for_presentation(plot) # After adjustments

getTBinR documentation built on July 2, 2020, 12:31 a.m.