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
installed.packages()
ref
ip = as.data.frame(installed.packages()[,c(1,3:4)]) ip = ip[is.na(ip$Priority),1:2,drop=FALSE] ip