Created
May 13, 2013 18:38
-
-
Save tomaskrehlik/5570386 to your computer and use it in GitHub Desktop.
Exporting citations for all the packages from R that you have used in some work.
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
temp <- lapply(c("data.table","reshape","ggplot2","wavelets", "Rcpp", "compiler", "base", "stringr", "RSNNS", "forecast", "rugarch", "parallel"),function(x) toBibtex(citation(x))) | |
cat(str_join(unlist(temp), "\n"), file="~/.../R.bib") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment