I wrote one of the fastest DataFrame libraries
11–20 of 146 posts
Re: I wrote one of the fastest DataFrame libraries
#12Not sure if anything exists but I wish something would do in memory compression + smart disk spillover. Sometimes I want to work with 5-10GB compressed data sets (usually log files) and decompressed that ends up being 10x (plus add data structure overhead). There's stuff like Apache Drill but it's more optimized for multi node than running locally
Re: I wrote one of the fastest DataFrame libraries
#13Pretty impressed with the data.table benchmarks. The syntax is a little weird and takes getting used to but once you have the basics it’s a great tool.
Re: I wrote one of the fastest DataFrame libraries
#14Not sure if anything exists but I wish something would do in memory compression + smart disk spillover. Sometimes I want to work with 5-10GB compressed data sets (usually log files) and decompressed that ends up being 10x (plus add data structure overhead). There's stuff like Apache Drill but it's more optimized for multi node than running locally
Re: I wrote one of the fastest DataFrame libraries
#15Not sure if anything exists but I wish something would do in memory compression + smart disk spillover. Sometimes I want to work with 5-10GB compressed data sets (usually log files) and decompressed that ends up being 10x (plus add data structure overhead). There's stuff like Apache Drill but it's more optimized for multi node than running locally
Re: I wrote one of the fastest DataFrame libraries
#16Re: I wrote one of the fastest DataFrame libraries
#17Pretty impressed with the data.table benchmarks. The syntax is a little weird and takes getting used to but once you have the basics it’s a great tool.
I use it a lot but it really breaks the tidyverse, which makes using R actually enjoyable. Why aren’t these other libraries (not in R; I’m talking the others in the benchmark) consistently as fast as data.table? Are the programmers of data.table just that much better?
Re: I wrote one of the fastest DataFrame libraries
#18Pretty impressed with the data.table benchmarks. The syntax is a little weird and takes getting used to but once you have the basics it’s a great tool.
Re: I wrote one of the fastest DataFrame libraries
#19What’s up with all the Dask benchmarks saying “internal error”? I expected at least some explanation in the post.