9

Is there an R package, website, or command that will allow one to search for a specific statistical procedure they desire?

For instance, if I wanted to find a package that had the Box-Cox Transformation, the website/package/command might return "MASS" and refer me to the boxcox() function.

It is fairly straightforward with something like Box-Cox, but I was hoping it would allow me to find more difficult procedures or search by what the function does ("Concatenating columns to a data frame" might turn up cbind()). Does something like this exist?

chl
  • 50,972
  • 18
  • 205
  • 364
Christopher Aden
  • 1,775
  • 4
  • 24
  • 43

4 Answers4

13

The sos package lets you search the help documentation for all cran packages from within R itself.

Mike Lawrence
  • 12,691
  • 8
  • 40
  • 65
12

rseek is pretty good. More abstract semantic queries along the lines of your second example are hard anywhere.

Also, see this SO thread from the R-faq listing there.

ashaw
  • 766
  • 7
  • 10
5

Sometimes I just go to crantastic and search for keywords

Search for Box Cox on Crantastic

Btibert3
  • 1,154
  • 1
  • 13
  • 23
4

I would try two things. One is the ?? help search in R, so for Box-Cox I would do

??cox

which should list packages or functions with that text

The other is to try the http://www.rseek.org/ site which is like google just for R.

PaulHurleyuk
  • 1,549
  • 3
  • 16
  • 18