How to install Rmpfr in R 3.1.1 - r

I am using R 3.1.1 with Ubuntu 13.10. When I am trying to install Rmpfr package, I am getting error
package ‘Rmpfr’ is not available (for R version 3.1.1)
Can someone tell me how to install it?

Related

Cannot Install RSConnect Package in RStudio on Mac

I am unable to install the RSConnect package in RStudio with R 3.1.2 on OS X El Capitan via:
install.packages('rsconnect')
It's telling me that:
package ‘rsconnect’ is available as a source package but not as a binary
package ‘rsconnect’ is not available (for R version 3.1.2)
Is there another way to install this package? The Shiny documentation is a little vague on this subject.
Try install.packages("rsconnect", type = "source")

package ‘gplots’ is not available for R version 3.0.2

I was using ubuntu 14.04.2 LTS. My R version was 3.0.2.
When I used the following command to install package "gplots"
sudo -i
R
install.packages("gplots")
I got a warning message: package ‘gplots’ is not available (for R version 3.0.2.) Any suggestion? Thanks.
You can try installing gpots from github cran repo.
install.packages("dplyr")
library(devtools)
install_github("cran/gplots")

Package "Kendall" in R- Version 3.1.1

Can anyone tell me how to install "Kendall" package in R 3.1.1 version.
I have been trying to install using
install.packages("Kendall")
but everytime I do this, I get an error:
Warning in install.packages :
package ‘Kendall’ is not available (for R version 3.1.1)

Installing Rcpp package in R 2.15.0

I have a problem installing "Rcpp" package in R. The install command have worked for all packages but not for this one. The R error is :
package ‘Rcpp’ is not available (for R version 2.15.0)
I am using windows Vista.Please help.
As can be seen on the CRAN status page for Rcpp, it now depends on R (>= 2.15.1).
So you either update R from 2.15.0 to 2.15.1 (which is not a bad idea), or you can try to install an older Rcpp version such as 0.9.10 which will work with R 2.15.0.

unable to install quadprog package on R Version 2.13.0 on mac

I am unable to install quadprog package on R Version 2.13.0 on mac
install.packages("quadprog", repos="http://R-Forge.R-project.org")
Warning message:
In getDependencies(pkgs, dependencies, available, lib) :
package ‘quadprog’ is not available (for R version 2.13.0)
Regards,
Jasdeep Mandia
Simply enough, quadprog isn't hosted on r-forge. Why are you trying to use r-forge instead of CRAN?
Perhaps you are thinking of Rquadprog? It is hosted on r-forge. On a Mac you will need to use the type="source" argument to install.packages for anything on r-forge, and you may need to install Xcode if the package is not just pure R code.

Resources