Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install the e1071 package in R 2.15.0

Tags:

r

cran

I want to use the skewness() and kurtosis() functions from the e1071 package. I have tried downloading the e1071 package with

install.packages("e1071", dep = TRUE) 

but it still doesn't seem to work. So I am wondering if it is the wrong version I installed. I've tried searching the CRAN site but I can't seem to find the version for R 2.15.0.

So I was wondering if I was doing it wrong or could someone please give me the link to the e1071 package, version 2.15.0.

like image 941
user3165084 Avatar asked Jan 09 '14 19:01

user3165084


People also ask

How do I download package e1071 in R?

This is how I did it for mac: 1) Download the binary - https://CRAN.R-project.org/package=e1071 2) Run R CMD INSTALL e1071_version. tgz After this i tried to load the library but ran into the following problem. If you don't you can skip the step below. A soft link might work as well but i just copied the whole lib.

What is e1071 package in R?

e1071 is a package for R programming that provides functions for statistic and probabilistic algorithms like a fuzzy classifier, naive Bayes classifier, bagged clustering, short-time Fourier transform, support vector machine, etc.. When it comes to SVM, there are many packages available in R to implement it.


2 Answers

You could try this: go to the

https://cran.r-project.org/web/packages/e1071/index.html

get the windows Finding the windows binary filebinaries for the library and put it in your library folder within the R installation. Then load the library within R

library(e1071) :)

like image 134
lordzeus1989 Avatar answered Sep 18 '22 06:09

lordzeus1989


Well I did like this

if you are using Rstudio go to packages in the right windows click on install write e1071 click install and it will work

like image 42
osama Avatar answered Sep 21 '22 06:09

osama