This was the output that was shown on running the code-
library(explore) Error in library(explore) : there is no package called ‘explore’
install.packages(explore) Error in install.packages : object 'explore' not found
This was the output that was shown on running the code-
library(explore) Error in library(explore) : there is no package called ‘explore’
install.packages(explore) Error in install.packages : object 'explore' not found
You need to quote the package you're hoping to install.
install.packages("explore")
library(explore)