Get the list of installed packages by user in R

后端 未结 5 1157
忘了有多久
忘了有多久 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:08

    ref

    ip = as.data.frame(installed.packages()[,c(1,3:4)])
    ip = ip[is.na(ip$Priority),1:2,drop=FALSE]
    ip
    

提交回复
热议问题