On running the Explore function for visualising mtcars dataset in R studio, it shows, could not find function, when it has been already installed

Viewed 12

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

1 Answers

You need to quote the package you're hoping to install.

install.packages("explore")
library(explore)
Related