I am used to writing data manipulation logic in SQL and now that I am learning R I find myself sometimes just wanting to do something that would be simple in SQL but I have to learn a bunch of stuff with R to do the same manipulation on an R data frame. Is there a simple work around?
Asked
Active
Viewed 7,050 times
13
-
Can you give any examples please? – nekomatic Jul 23 '09 at 11:17
2 Answers
12
look at the package sqldf. http://code.google.com/p/sqldf/ It seems perfect for your needs.

Eduardo Leoni
- 8,991
- 6
- 42
- 49
11
I'm also more comfortable with SQL, but when working with large data sets in R, my favourite manipulation tool is the data.table
package. Unlike sqldf
, which lets you write SQL in R, data.table
lets you write R in R - but gives you the ability to add indexes on data frames (well, data.table
s, to be precise). The ability to index data frames makes 'joins' much much much faster. And being an R implementation, your code still looks like R.

Arun
- 116,683
- 26
- 284
- 387

Josh Reich
- 6,477
- 5
- 28
- 26