(This article was first published on indiacrunchin » R, and kindly contributed to R-bloggers)
When looking for functions whose exact name is unknown
# Functions related to “shrinkage” methods
help.search(“shrinkage”)
Package sos does a great job in finding functions
install.packages(“sos”)
library(sos)
shrinkageResults <- findFn("shrinkage", maxPages = 1)
shrinkageResults
# This opens a webpage in your browser with the results
The table in the webpage created above have sortable columns.
# Sort on creation data of resultant packages
summaryObj <- summary(shrinkageResults)
pkgTable <- summaryObj$PackageSummary
pkgTable <- pkgTable[order(pkgTable$Date,decreasing=T),]
Many more R specific search options here
To leave a comment for the author, please follow the link and comment on his blog: indiacrunchin » 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, trading) and more...

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