Whenever I try to install any package in R on Ubuntu 14.04, I\'m getting the following error:
Error in readRDS(file) : error reading from connection
<
1- Install the latest version of R form the CRAN and try to install a package.
2- If it is possible check it with another user account.
3- Try to install the R package locally.
4- If there is an RDS file created by the old version of R you may have another sort of problem, this is the warning from R help:
Warning
These functions have provided a stable interface since R 2.4.0 (when the storage of serialized objects was changed from character to raw vectors). However, the serialization format may change in future versions of R, so this interface should not be used for long-term storage of R objects.
On 32-bit platforms a raw vector is limited to 2^31 - 1 bytes, but R objects can exceed this and their serializations will normally be larger than the objects.
Ref: help(serialize)