Error in library(e1071)

Hi,

I am trying to relearn some statistics using the tutorial on this site:

http://r-statistics.co/Linear-Regression.html

I am trying to make the density plot.

The code starts with:

library(e1071)

When I type that in, I get an error message:

Error in library(e1071) : there is no package called ‘e1071’

I've tried loading the "stats" package, but I can't seem to fix it.

You need to install the package.

install.packages("e1071")

In RStudio, you can also install packages using the little grey "Install" button on the "Packages" pane, probably to the right of your screen. Packages that are already installed on your computer are listed in the Packages pane.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.