Cannot install package XML to R

前端 未结 6 1292
刺人心
刺人心 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:34

    Use

    install.packages("XML")
    

    It worked for me.

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

    The above code returned the same error for me as well. I am also using R 3.1.1

提交回复
热议问题