Hi anyone could give some suggestion? I am trying to install fable package but when I got the error message: Warning in install.packages : package ‘fable’ is not available (for R version 3.4.2)
any solution?? Thank you!
Hi anyone could give some suggestion? I am trying to install fable package but when I got the error message: Warning in install.packages : package ‘fable’ is not available (for R version 3.4.2)
any solution?? Thank you!
As the fable
package located at GitHub repositary you should use devtools
package install_github
. Please see the code below:
installed.packages("devtools")
install.packages("tsibble")
library(devtools)
install_github("tidyverts/fable")
library(fable)