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)
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. |
A plot adjusted for presentation.
Maria Bekker-Nielsen Dunbar
Sam Abbott
plot <- plot_tb_burden_summary( countries = "United Kingdom", compare_all_regions = FALSE, compare_to_region = TRUE ) plot # Originalfor_presentation(plot) # After adjustments