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

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

Maria Bekker-Nielsen Dunbar

Sam Abbott

Examples

plot <- plot_tb_burden_summary( countries = "United Kingdom", compare_all_regions = FALSE, compare_to_region = TRUE ) plot # Original
for_presentation(plot) # After adjustments