Unable to install ISLR package in R

This is the code I ran:

install.packages(ISLR); 

And that was the answer:

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

Any tips?

+6
source share
1 answer
  • Use quote marks install.packages('ISLR') .
  • Make sure your internet connection is available.
  • If you get package is not available as binaries , upgrade your R in the current version.
  • After a successful installation, call library('ISLR') to download the package.
+9
source

Source: https://habr.com/ru/post/989112/


All Articles