How to determine which older version of the R package is compatible with my R version

后端 未结 4 2030
时光说笑
时光说笑 2020-12-29 23:30

I am trying to install the \"tm\" package but then I get an error saying that \"tm\" is not available for my R version

package ‘tm’ is not available (for R v         


        
4条回答
  •  灰色年华
    2020-12-30 00:22

    Another option would be to upgrade your version of R so it is compatible with that latest version of the "tm" package. You can do that easily within R by using the following code:

    # install the latest installr package: 
    install.packages("installr")
    
    # require the latest installr package: 
    require(installr)
    
    #run the command to update R
    updateR()
    

    HT: http://www.r-statistics.com/2014/07/r-3-1-1-is-released-and-how-to-quickly-update-it-on-windows-os/

提交回复
热议问题