CRAN Search
[This article was first published on R-Chart, 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.
Here’s a ditty to search the cran R packages by descriptionWant to share your content on R-bloggers? click here if you have a blog, or here if you don't.
cranSearch = function(q=”)
{
library(XML)
u<-'http://cran.r-project.org/web/packages/'
d<-readHTMLTable(u)
d[[1]]$V1
lib.names <- as.vector(d[[1]]$V1)
lib.descriptions <- as.vector(d[[1]]$V2)
lib.names[grep(q,lib.descriptions)]
}
So to search for all packages that have XML in the description.
cranSearch(‘XML’)
The search is case sensitive.
cranSearch(‘World Bank’)
In fact it is a regular expression.
cranSearch(‘stock|Stock’)
To leave a comment for the author, please follow the link and comment on their blog: R-Chart.
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.