Learn R Programming

getTBinR (version 0.7.1)

for_presentation: Presentation style plots

Description

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

Usage

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.

Examples

Run this code
# NOT RUN {
plot <- plot_tb_burden_summary(
  countries = "United Kingdom",
  compare_all_regions = FALSE, compare_to_region = TRUE
)
plot # Original
for_presentation(plot) # After adjustments
# }

Run the code above in your browser using DataLab