Skip to content

Instantly share code, notes, and snippets.

@FloWuenne
Created February 13, 2020 17:49
Show Gist options
  • Save FloWuenne/04cf19f8a3e666f0633aed1d7b147887 to your computer and use it in GitHub Desktop.
Save FloWuenne/04cf19f8a3e666f0633aed1d7b147887 to your computer and use it in GitHub Desktop.
Get list of installed R packages
ip <- as.data.frame(installed.packages()[,c(1,3:4)])
rownames(ip) <- NULL
ip <- ip[is.na(ip$Priority),1:2,drop=FALSE]
print(ip, row.names=FALSE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment