Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't install ISLR package [closed]

This is the code I ran:

install.packages(ISLR);

And this was the response:

>Error in install.packages : object 'ISLR' not found

Any advice?

like image 754
Madhavi Jouhari Avatar asked Jun 15 '15 05:06

Madhavi Jouhari


1 Answers

  1. Use quotes install.packages('ISLR').
  2. Make sure your internet connection available.
  3. If you're getting package is not available as binaries, update your R to the current version.
  4. After successfull installation, call library('ISLR') to load package.
like image 175
cyberj0g Avatar answered Oct 27 '22 21:10

cyberj0g