I want to use gganimate package for making animation of oil production for each well, displaying oil production on y-axis and date on x-axis and animating the yearly production.
I have installed these packages (gapminder, ggplot2, gganimate, devtools & dplyr)
I have never used gganimate, but the error message suggests the package isn't loaded. If you run search(), do you see gganimate in the list of packages? If not, run library(gganimate).
I am quite confused. The only dataset in the gapminder package installed on my computer has six variables: country, continent, year, lifeExp, pop, and gdpPercap.
I have installed all these libraries:
install.packages("gapminder")
library(gapminder)
install.packages('gganimate')
library(gganimate)
install.packages('ggplot2')
library(ggplot2)
install.packages('dplyr')
library(dplyr)
install.packages('devtools')
library(devtools)
install.packages('gifski')
library(gifski)
install.packages('av')
library(av)