Moysey Abramowitz
Moysey Abramowitz

Reputation: 380

Out-of-core computations in Julia

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

Answers (1)

Chris Rackauckas
Chris Rackauckas

Reputation: 19162

JuliaDB is a dataframe package in Julia which allows for out-of-core computations, online (streaming) statistics, and parallelism.

Upvotes: 4

Related Questions