Échelles logarithmiques

Introduction au Tidyverse

David Robinson

Chief Data Scientist, DataCamp

Nuage de points

5XUScDZ.png

library(ggplot2)

ggplot(gapminder, aes(x = gdpPerCap, y = lifeExp)) +
  geom_point()
Introduction au Tidyverse

Échelle logarithmique

ggplot(gapminder_2007, aes(x = gdpPercap, y = lifeExp)) +
  geom_point() +
  scale_x_log10()
Introduction au Tidyverse

Passons à la pratique !

Introduction au Tidyverse

Preparing Video For Download...