4

I am getting the following error when I am loading a few libraries in R:

library(forecast) Error : object ‘f_eval’ is not exported by 'namespace:lazyeval' In addition: Warning message: package ‘forecast’ was built under R version 3.3.2 Error: package or namespace load failed for ‘forecast’

library(tsoutliers) Error : object ‘f_eval’ is not exported by 'namespace:lazyeval' In addition: Warning message: package ‘tsoutliers’ was built under R version 3.3.2 Error: package or namespace load failed for ‘tsoutliers’

I have tried reinstalling the packages but it didn't help. Also, I was able to use the forecast package previously but I started facing this error post the installation of tsoutliers package.

How can I resolve this issue?

zx8754
  • 52,746
  • 12
  • 114
  • 209
ab90hi
  • 435
  • 1
  • 4
  • 11
  • Possible duplicate of [Error: package or namespace load failed for ggplot2 and for data.table](https://stackoverflow.com/questions/31717850/error-package-or-namespace-load-failed-for-ggplot2-and-for-data-table) – zx8754 Nov 20 '17 at 15:50

1 Answers1

9

This should do the job for you:

install.packages('lazyeval')

In the future, try and provide a bit more about your system and install, using the output from:

sessionInfo()
Simon
  • 675
  • 1
  • 6
  • 15