Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error in loadNamespace(name) : there is no package called 'evaluate'

While adding code chuncks to my .rmd file a la:

```{r} %code chunck

```

it can't be compiled anymore, and i get a loadnamespace(name) error:

Error in loadNamespace(name) : 
there is no package called 'evaluate' calls:<Anonymous> ... tryCatch-> Trycatchlist->trycatchoone

Has anyone ever experienced it? And how do I resolve it?

like image 369
owner Avatar asked Sep 25 '15 15:09

owner


1 Answers

Try install.packages("evaluate") and then reattempt compilation. It was probably uninstalled unintentionally at some point.

like image 89
Thomas Avatar answered Sep 21 '22 03:09

Thomas