【发布时间】:2019-08-11 11:45:35
【问题描述】:
由于我的消息,我已经安装了 transformr 和 gifski 软件包。为什么下面的代码不起作用?我收到很多消息:
geom_path: Each group consists of only one observation. Do you need to adjust the group aesthetic?
library(gapminder)
library(gganimate)
library(gifski)
library(transformr)
library(dplyr) # For %>% and filter and %in%
library(ggplot2)
gapminder %>%
filter(country %in% c("Afghanistan", "United States")) %>%
ggplot() +
geom_line(aes(year, pop, group=country)) +
transition_time(year)
【问题讨论】: