Created
July 20, 2016 19:13
-
-
Save bselden/747c0d11eac380b4daadbaef59f68404 to your computer and use it in GitHub Desktop.
This file contains 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
### Get a list of all your installed packages (so that you can reinstall them after updating R) | |
a <- installed.packages() | |
my_pkgs <- dimnames(a)[[1]] | |
save(my_pkgs, file="my_pkgs.RData") | |
load("my_pkgs.RData") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tried to figure out how to submit a pull request to a gist .. maybe you can't.
I forked and made a small edit