Scale logaritmice

Introducere în Tidyverse

David Robinson

Chief Data Scientist, DataCamp

Diagramă de dispersie

5XUScDZ.png

library(ggplot2)

ggplot(gapminder, aes(x = gdpPerCap, y = lifeExp)) +
  geom_point()
Introducere în Tidyverse

Scară logaritmică

ggplot(gapminder_2007, aes(x = gdpPercap, y = lifeExp)) +
  geom_point() +
  scale_x_log10()
Introducere în Tidyverse

Să exersăm!

Introducere în Tidyverse

Preparing Video For Download...