0
votes

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.

1
Nop. I did tried to install before using the package. - beesuns

1 Answers

0
votes

You can try installing gpots from github cran repo.

install.packages("dplyr")
library(devtools)
install_github("cran/gplots")