Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to install tidyr in R version 3.1.1

I am unable to install tidyr package in R version 3.1.1

This is what happens:

install.packages("tidyr")

Installing package into ‘C:/Users/Name/Documents/R/win-library/3.1’
(as ‘lib’ is unspecified)

Warning in install.packages :
  package ‘tidyr’ is not available (for R version 3.1.1)

I have a Windows PC and have just installed dplyr which got installed easily and is running smoothly.

Any ideas why this is happening as this doesn't seem to be a general issue.

like image 244
Asad Shah Avatar asked Dec 09 '14 23:12

Asad Shah


1 Answers

I got same Problem with DSR Package, like this:

(as ‘lib’ is unspecified) Warning in install.packages : package ‘DSR’ is not available (for R version 3.2.4 Revised)

then solved it with devtoolls.

devtools::install_github("hadley/tidyr")

like image 199
Deli Avatar answered Sep 22 '22 17:09

Deli