I\'ve recently compiled R on Ubuntu Server 16.04. I\'m attempting to run an R Script using the Rscript function, but I\'m running into errors.
When I run the script usi
It is a design bug in Rscript: it does not load methods on startup.
Rscript
methods
Two fixes:
library(methods)
sudo apt-get install r-cran-littler
r
r has been loading methods since day one as this behaviour of Rscript never really made sense.