Communicating with Data in the Tidyverse
Timo Grossenbacher
Data Journalist
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