Я установил пакеты 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)