0

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.

Thomas
  • 43,637
  • 12
  • 109
  • 140
beesuns
  • 21
  • 1
  • 7

1 Answers1

0

You can try installing gpots from github cran repo.

install.packages("dplyr")
library(devtools)
install_github("cran/gplots")
rubayet.R
  • 113
  • 1
  • 9