Instaling factoextra R package- Installing the R package factoextra

2

I have been trying to install the factoextra (R) package without success. This is the code I've been using so far:

library("devtools")

install_github("kassambara/factoextra")

And this is the problem:

  

library ("devtools")

     

install_github ("kassambara / factoextra") Skipping install for github remote, the SHA1 (a335d1ce) has not changed since last install. Use% co_of% to force installation

Any suggestions? Thanks in advance.

    
asked by JGuv 11.04.2016 в 00:31
source

2 answers

1

On more than one occasion I have the same problem with some packages. The best way to solve this is:

  • Reinstalling R (preferably the most current version)
  • installing the package from github (previous R update)
  • change repository (usually some repositories are down)

Well I assume it may be because of some system bug, but it usually happens.

On the other hand, it is important that you are always viewing your sessionInfo ().

> sessionInfo()
sessionInfo()
R version 3.3.0 (2016-05-03)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Debian GNU/Linux 8 (jessie)

locale:
 [1] LC_CTYPE=es_PE.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=es_PE.UTF-8        LC_COLLATE=es_PE.UTF-8    
 [5] LC_MONETARY=es_PE.UTF-8    LC_MESSAGES=es_PE.UTF-8   
 [7] LC_PAPER=es_PE.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=es_PE.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base 

I make this comment because, more than once I had problems when I used a couple of packages, I do not remember very well I think they were the (MODIS and the Bfast or remotesensing I think).

I assume in this case that I opened some conflict between these packages. ...

Greetings!

    
answered by 09.06.2016 в 01:26
0

It seems that you have installed it before, and that nothing has changed since you last did it.

Try to load the package using:

library("factoextra")

If that does not work, reinstall using force = TRUE in the following way:

install_github("kassambara/factoextra", force = TRUE)
    
answered by 11.04.2016 в 15:58