Finalizing the plot for different audiences and devices

Communicating with Data in the Tidyverse

Timo Grossenbacher

Data Journalist

Communicating with Data in the Tidyverse

coord_cartesian vs. xlim / ylim

ggplot_object +
    coord_cartesian(xlim = c(0, 100), ylim = c(10, 20))
ggplot_object +
    xlim(0, 100) +
    ylim(10, 20)
Communicating with Data in the Tidyverse

coord_cartesian vs. xlim / ylim

1 Taken from RStudio Data Visualization Cheat Sheet (https://github.com/rstudio/cheatsheets/blob/main/data-visualization-2.1.pdf)
Communicating with Data in the Tidyverse

Communicating with Data in the Tidyverse

Communicating with Data in the Tidyverse

Let's produce these plots!

Communicating with Data in the Tidyverse

Preparing Video For Download...