简体   繁体   中英

SQL-like functionality in R

I am used to writing data manipulation logic in SQL and now that I am learning RI 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?

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM