由于收到消息,我已经安装了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)
答案 0 :(得分:0)
我已经解决了问题。我需要使用transition_reveal
而不是transition_time
。