Can't install ISLR package [closed]
Asked Answered
B

1

12

This is the code I ran:

install.packages(ISLR);

And this was the response:

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

Any advice?

Bolanos answered 15/6, 2015 at 5:51 Comment(2)
You need quotes: install.packages("ISLR").Incivility
Thank you, it was a silly thing to miss. :)Bolanos
D
31
  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.
Dissociable answered 15/6, 2015 at 6:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.