Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error installing gplots

Tags:

r

gplots

I am running R (v. 3.0.3) on OSX (v. 10.9.2).

When trying to install the 'gplots' package in R studio with the following command, I get an error:

> library("gplots")
Error in library("gplots") : there is no package called ‘gplots’

I have seen others having the same problem, but updating to the newest R version as suggested did not solve the problem

Any suggestions on what i am doing wrong?

like image 492
jensjorda Avatar asked Apr 30 '26 03:04

jensjorda


1 Answers

You first need to install the package before you can call it from your library. Try:

install.packages("gplots")

Then, you can run your library command using:

library(gplots)
like image 139
Nathaniel Payne Avatar answered May 01 '26 18:05

Nathaniel Payne



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!