I tried downloading the R package "gapminder" but I am unable to use the data from the package. I think it's because I'm receiving these error messages in the console.
Here is the code I inputed:
install.packages("gapminder")
library("gapminder")
data("gapminder")
And here is what I got:
Warning message:
In format.POSIXlt(as.POSIXlt(x), ...) :
unknown timezone 'zone/tz/2019c.1.0/zoneinfo/Europe/Paris'
and
Warning message:
In data("gapminder") : data set ‘gapminder’ not found
Is it related to my current time zone? I'm in France. If so, how can I modify it to be able to use the data in the package normally?