Created
July 21, 2015 17:59
-
-
Save peterdalle/7cd66a4341f48dfd657b to your computer and use it in GitHub Desktop.
List installed packages and versions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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