How do I install an R package from source?

后端 未结 6 717
半阙折子戏
半阙折子戏 2020-11-22 01:46

A friend sent me along this great tutorial on webscraping NYtimes with R. I would really love to try it. However, the first step is to installed a package called RJSONIO fro

6条回答
  •  失恋的感觉
    2020-11-22 02:10

    You can install directly from the repository (note the type="source"):

    install.packages("RJSONIO", repos = "http://www.omegahat.org/R", type="source")
    

提交回复
热议问题