Reputation: 380
I consider switching from R, Python and SAS to Julia and wondering whether Julia has convenient tools for out-of-core operations. I intend to use Julia on datasets of the size 10-20 Gb, so I would like to be able to manipulate them without loading them into RAM. Is there any package in Julia, allowing Julia to ‘just work’ with larger-than-RAM data the way SAS functions work?
Upvotes: 2
Views: 343
Reputation: 19162
JuliaDB is a dataframe package in Julia which allows for out-of-core computations, online (streaming) statistics, and parallelism.
Upvotes: 4