This is the code I ran:
install.packages(ISLR);
And that was the answer:
Error in install.packages: 'ISLR' object not found
Any tips?
source share- 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.
source shareSource: https://habr.com/ru/post/989112/
All Articles