로그 스케일

Tidyverse 입문

David Robinson

Chief Data Scientist, DataCamp

산점도

5XUScDZ.png

library(ggplot2)

ggplot(gapminder, aes(x = gdpPerCap, y = lifeExp)) +
  geom_point()
Tidyverse 입문

로그 스케일

ggplot(gapminder_2007, aes(x = gdpPercap, y = lifeExp)) +
  geom_point() +
  scale_x_log10()
Tidyverse 입문

연습해 봅시다!

Tidyverse 입문

Preparing Video For Download...