Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL-like functionality in R

Tags:

sql

r

sqldf

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?

like image 488
medriscoll Avatar asked Jul 23 '09 04:07

medriscoll


1 Answers

look at the package sqldf. http://code.google.com/p/sqldf/ It seems perfect for your needs.

like image 142
Eduardo Leoni Avatar answered Sep 22 '22 06:09

Eduardo Leoni