Last active
April 25, 2017 11:50
-
-
Save paulboardman/30865bcb14aa87adcdb8b79f3d57c28f to your computer and use it in GitHub Desktop.
R script for printing out the list of user installed packages along with their version number
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
# generates the list of user installed packages and prints out the name and version number | |
user_packages <- as.data.frame(installed.packages(priority="NA"), stringsAsFactors=F) | |
print(unique(user_packages[c('Package', 'Version')]), row.names=F) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment