when I want to create a gif I can't, several images are always created but not the gif, could I do this with version 3.9? but in the new version of 4.1.? I can't, is it because of this? Does anyone know how I can create a gif?
this is my code:
library('tidyverse')
library('gganimate')
library('gifski')
library('gapminder')
graficar el promedio de la esperanza de vida de los continentes por año gif
gapminder %>%
group_by(year, continent) %>%
summarize(mean_life = mean(lifeExp)) %>%
ggplot(aes(x = year,
y = mean_life,
color = continent))+
geom_line()+
transition_reveal(year)
help me please