This is the code I ran:
install.packages(ISLR);
And this was the response:
>Error in install.packages : object 'ISLR' not found
Any advice?
This is the code I ran:
install.packages(ISLR);
And this was the response:
>Error in install.packages : object 'ISLR' not found
Any advice?
install.packages('ISLR')
.package is not available as binaries
, update your R to the current version.library('ISLR')
to load package.