Finding functions in R
[This article was first published on indiacrunchin » R, 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.
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 their blog: indiacrunchin » R.
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.