R 2.14 - detect packages without namespace

后端 未结 3 1884
谎友^
谎友^ 2021-02-07 04:59

According to the R News for v2.14:

All packages must have a namespace, and one is created on installation if not supplied in the sources. This me

3条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-07 05:31

    Great thread. I was stuck on the same problem. To finish all that needs to be done you can:

    remove.packages(names(pkgNS[!pkgNS]))
    install.packages(names(pkgNS[!pkgNS]))
    

提交回复
热议问题