Skip to content

Instantly share code, notes, and snippets.

@paulboardman
Last active April 25, 2017 11:50
Show Gist options
  • Save paulboardman/30865bcb14aa87adcdb8b79f3d57c28f to your computer and use it in GitHub Desktop.
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
# 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