-1

I want to run the SIFT software in R, but when I start, the message Error in the library: there is no package called ‘reshape2’ is displayed in R Studio. What is the problem?

Phil
  • 7,287
  • 3
  • 36
  • 66
Ati As
  • 3
  • 2

1 Answers1

0

The error message tells you that the package "reshape2" has not been installed. You can install it with

install.packages('reshape2')
MrGumble
  • 5,631
  • 1
  • 18
  • 33
  • I installed this package but the problem was not solved. You can explain more about installing this package? Could the problem be something else? – Ati As Feb 11 '21 at 12:44