Blegging for Data
[This article was first published on John Myles White » Statistics, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I’m in the middle of a new project that involves analyzing the packages that are currently on CRAN. As part of my work, I could really benefit from information about which packages are installed on people’s computers. If you’re willing to part with a bit of your time and privacy, I’d very much appreciate you running the following script in R,
1 2 3 4 | package.info <- installed.packages()[,c(1,3)] write.csv(package.info, file = 'my_installed_packages.csv', row.names = FALSE) |
and sending me the output file my_installed_packages.csv
by e-mail to [email protected].
To leave a comment for the author, please follow the link and comment on their blog: John Myles White » Statistics.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.