I recently came across the pandas library for python, which according to this benchmark performs very fast in-memory merges. It's even faster than the data.table package in R (my language of choice for analysis).

Why is pandas so much faster than data.table? Is it because of an inherent speed advantage python has over R, or is there some tradeoff I'm not aware of? Is there a way to perform inner and outer joins in data.table without resorting to merge(X, Y, all=FALSE) and merge(X, Y, all=TRUE)?

Comparison

Here's the R code and the Python code used to benchmark the various packages.

link|improve this question

My hypothesis: because data.table is based on data.frame and data.frames are slow. And I think most of the pandas merge code is in Cython. – Joshua Ulrich Jan 24 at 18:15
1  
@JoshuaUlrich: IIRC data.table just inherits from data.frame, but it relies on C-code under the hood. – digEmAll Jan 24 at 18:25
@digEmAll: data.frames are slow even if you manipulate them in C, but I've never looked at the data.table source. – Joshua Ulrich Jan 24 at 18:36
@JoshuaUlrich: it implements basically a binary search on a sorted data.frame. But yes, probably is slower than pandas because of the access to data.frame's (I wouldn't call them "slow" though, just "slower") – digEmAll Jan 24 at 20:53
@Joshua What do you mean by "data.frames are slow even if you manipulate them in C"? Is that relative to something else? And slow at what? – Matthew Dowle Jan 25 at 5:40
show 7 more comments
feedback

2 Answers

up vote 27 down vote accepted

pandas is faster because I came up with a better algorithm, which is implemented very carefully using a fast hash table implementation (https://github.com/attractivechaos/klib) and in C/Cython to avoid the Python interpreter overhead for the non-vectorizable parts. The algorithm is described in some detail in my presentation here: http://wesmckinney.com/blog/?p=437.

The comparison with data.table is actually a bit interesting because the whole point of data.table is that it contains pre-computed indexes for various columns to accelerate operations like data selection and merges. In this case (database joins) pandas DataFrame contains no pre-computed information that is being used for the merge, so it's a "cold" merge so to speak. If I had stored the factorized versions of the join keys, the join would be significantly faster as that is the biggest bottleneck (factor-izing) in the algorithm.

I should also add that the internal design of pandas.DataFrame is much more amenable to these kinds of operations than R's data.frame (which is just a list of arrays internally).

link|improve this answer
13  
Of course, now that you've figured it all out in python, it should be easy to translate into R ;) – hadley Jan 24 at 22:35
feedback

It looks like Wes may have discovered a known issue in data.table when the number of unique strings (levels) is large: 10,000.

Does Rprof() reveal most of the time spent in the call sortedmatch(levels(i[[lc]]), levels(x[[rc]])? This isn't really the join itself (the algorithm), but a preliminary step.

Recent efforts have gone into allowing character columns in keys, which should resolve that issue by integrating more closely with R's own global string hash table. Some benchmark results are already reported by test.data.table() but that code isn't hooked up yet to replace the levels to levels match.

Are pandas merges faster than data.table for regular integer columns? That should be a way to isolate the algorithm itself vs factor issues.

Also, data.table has time series merge in mind. Two aspects to that: i) multi column ordered keys such as (id,datetime) ii) fast prevailing join (roll=TRUE) a.k.a. last observation carried forward.

I'll need some time to confirm as it's the first I've seen of the comparison to data.table as presented.

link|improve this answer
If you supply a test case for a reasonably large, realistic data set, I'll be happy to run the benchmarks. You're more than welcome to, also. I actually have not yet optimized the code for the integer join key case (put that on my todo list!), but you can expect significantly better performance than the string case given the hash table study in the linked presentation. – Wes McKinney Jan 25 at 15:08
1  
I don't use either of these libraries but pleased to see a constructive response from the R side in the shape of Matthew Dowle. – SlowLearner Jan 26 at 0:06
Here's some Rprof results pastie.org/3258362. It looks like 20-40% of the time is spent in sortedmatch depending on the join type. Will have to look into integer columns another time-- I made a pandas GitHub issue to remind me to optimize that case (github.com/wesm/pandas/issues/682) – Wes McKinney Jan 26 at 19:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.