Skip to content

Instantly share code, notes, and snippets.

@tomaskrehlik
Created May 13, 2013 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomaskrehlik/5570386 to your computer and use it in GitHub Desktop.
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.
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