Échelles logarithmiques

Introduction à Tidyverse

David Robinson

Chief Data Scientist, DataCamp

Diagramme de dispersion

5XUScDZ.png

library(ggplot2)

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

Échelle logarithmique

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

Passons à la pratique !

Introduction à Tidyverse

Preparing Video For Download...