Jim Maas
Jim Maas

Reputation: 1729

ggplot2 install not finding new Rcpp, Ubuntu 14.04

I've just upgraded R to 3.1.1, done update packages, and made sure that Rcpp is now 11.2 but getting this error when attempting to upgrade ggplot2.

Ubuntu 14.04 system

namespace ‘Rcpp’ 0.10.6 is being loaded, but >= 0.11.0 is required

Any suggestions? Thanks, J

Upvotes: 1

Views: 364

Answers (1)

Stefan
Stefan

Reputation: 221

Try

$ sudo R # type this in a terminal

> install.packages('ggplot2', dep = TRUE) # you type this into the R prompt and choose a mirror site

Upvotes: 1

Related Questions