Get the list of installed packages by user in R

后端 未结 5 1154
忘了有多久
忘了有多久 2021-01-30 08:58

How we can get the list of installed packages by user in R along with its version?

I know about the command installed.packages() which will give information

5条回答
  •  心在旅途
    2021-01-30 09:14

    str(allPackage <- installed.packages(.Library, priority = "high"))
    
    allPackage [, c(1,3:5)]
    

    You will get all the active package List

提交回复
热议问题