Search code examples
rsift

Problem not running Sift software in Rstudio


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?


Solution

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

    install.packages('reshape2')