Cannot install package XML to R

前端 未结 6 1336
刺人心
刺人心 2021-01-02 17:15

I need to install the package \"XML\" to R. It always reports \"XML is not available for R(Version 3.1.1)\" I have tried to download the .tar but it still did\'n work. Can a

6条回答
  •  醉酒成梦
    2021-01-02 17:43

    In general, install.packages("XML") worked well for me in the past, but I recently had an issue with R version 3.6.3.

    The solution for me was:

    install.packages("XML", repos = "http://www.omegahat.net/R")
    

    Note that it's .net, not .org.

提交回复
热议问题