15 comments

[ 2.9 ms ] story [ 71.4 ms ] thread
For some reason, I find it harder to find what I'm looking for in the R help than just about any other language. That's why you end up not knowing about useful packages for a very long time. Is that just me?
It's not just you. This was a huge problem for me at first. When you're googling search "R cran" + your query

You'll get way better results

There's an R-specific search engine called Rseek: http://www.rseek.org/

It's still not perfect, because if you don't know the right keyword for a concept you might not get what you're looking for. But it's pretty good.

When looking for an R package that does something specific, I usually go to the R package list [1] and search for what I am looking for ("SQL" if I want an SQL connector or "sparse" if I want something with sparse matrix). I generally end up finding a package that does what I need.

[1] http://cran.r-project.org/web/packages/available_packages_by...

data.table deserves a mention here too. It simplifies and speeds up dataframe operations

see ?data.table

Absolutely. The improvements to code and performance are really spectacular.
This article should really just be called "Everyone should just follow Hadley's Github". Actually, someone should write that.
ddply can be very slow. Strongly recommended to get your data into the form you want in something map-reduce-y _then_ throw it into R for analysis and graphing.
I never cease to be amazed at how people who work with data large enough to make tools like plyr slow assume that everyone works with data like that.

I have been using R daily for 7-8 years now and have only occasionally turned to somethig like data.table for performance reasons. "Big data" receives waaay more attention and hype than there are actual human beings working on data of that scale. I can assure you that for the vast majority of R users world wide plyr is plenty fast enough for their needs.

Sounds like you may have some experience that could assist me. I have six 3.6GB CSV files that I can't even get into R (reading them in just never happens, the program freezes), much less manipulate the data. I've not done any mad-reduce type functions before - is there a tool I can use to leverage that and get the data into R?
Caret (http://caret.r-forge.r-project.org/) is another package that should make the list, if you are using machine learning packages in R.

Caret gives you a common interface to you use a huge list of classifiers. Plus, it has some nice functions for data preparation.