对数刻度

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