Skip to content

Instantly share code, notes, and snippets.

@peterdalle
Created July 21, 2015 17:59
Show Gist options
  • Save peterdalle/7cd66a4341f48dfd657b to your computer and use it in GitHub Desktop.
Save peterdalle/7cd66a4341f48dfd657b to your computer and use it in GitHub Desktop.
List installed packages and versions
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)
# From http://www.r-bloggers.com/list-of-user-installed-r-packages-and-their-versions/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment