user9211845
user9211845

Reputation: 131

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

I am getting Error in library(tidyr) : there is no package called ‘tidyr’ error while installing the tidyr package.

I'm using version.string R version 3.2.3 version.

Upvotes: 1

Views: 4359

Answers (1)

David J. Bosak
David J. Bosak

Reputation: 1624

Looks to me like you are trying to load it, not install it. To install you first run install.packages("tidyr"), then run library(tidyr).

Also, your R version is pretty old. Not sure it will work that far back. You might consider upgrading if possible.

Upvotes: 1

Related Questions