Top "Cran" questions

For questions relating to the Comprehensive R Archive Network (CRAN), which serves as a central repository for R distributions and contributed packages.

How to select a CRAN mirror in R

I'm trying to install a package through the R prompt by doing the following: install.packages('RMySQL') But the output …

r package installation cran
How to tell CRAN to install package dependencies automatically?

I develop a package in R and when I check and build it in my local computer it works properly. …

r cran r-forge
Installing packages onto R

For some reason I am suddenly not able to install packages in R (I have subsequently updated to the latest …

r installation package cran
Set default CRAN mirror permanent in R

How can I set a specific CRAN mirror permanently in R? I want to set it permanently in my laptop …

r cran r-faq
Installing an R package from local unzipped folder

I am having difficulty installing an unzipped package on a Windows 7 computer without administrative privileges and no internet access. I …

r packages devtools cran install.packages
Installing all CRAN packages that are not already installed?

The following R commands will install all CRAN packages: availablePackages <- available.packages()[,1] install.packages(availablePackages) And the following …

r cran
Offline install of R package and dependencies

Suppose I need to install a number of packages on a (Linux) machine that does not have an internet connection. …

r cran
How to install the e1071 package in R 2.15.0

I want to use the skewness() and kurtosis() functions from the e1071 package. I have tried downloading the e1071 package …

r cran
Update a specific R package and its dependencies

I have around 4000 R packages installed in my system (a server) and most of them are outdated because they were …

r cran
Install a local R package with dependencies from CRAN mirror

I have built an R package, i.e. I have the mypackage.tar.gz file. This package depends on several …

r dependencies repository packages cran