Skip to content

Instantly share code, notes, and snippets.

@t-student
Created October 14, 2015 05:54
Show Gist options
  • Save t-student/9d648301a7821993076f to your computer and use it in GitHub Desktop.
Save t-student/9d648301a7821993076f to your computer and use it in GitHub Desktop.
# Produces list of user installed packages in R (in a readable format).
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