対数スケール

Tidyverse入門

David Robinson

Chief Data Scientist, DataCamp

散布図

散布図の例

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...