(This article was first published on Inundata » R, and kindly contributed to R-bloggers)
Unless you regularly use particular R packages, it’s becomes difficult to stay on top of updates and bug fixes. Updates usually also include significant improvements in performance. I wrote this short snippet of code which I run about once a month to keep up on updates. This short bit of code will give you a list of changes and decide which ones to update:
installed<-installed.packages() available <-available.packages() ia <- merge(installed, available, by="Package")[,c("Package", "Version.x", "Version.y")] updates<-ia[as.character(ia$Version.x) != as.character(ia$Version.y),] updates |
If you would like to install every available update:
update.packages() |
If you would like to keep up on new packages being released, I highly recommend following @CRANberries
To leave a comment for the author, please follow the link and comment on his blog: Inundata » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).