back to notes

Check what packages are Installed on R

https://stackoverflow.com/questions/38481980/get-the-list-of-installed-packages-by-user-in-r

The actual code that works:

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


last updated may 2019