reading csv in Julia is slow compared to Python

后端 未结 7 2002
北荒
北荒 2020-12-16 11:10

reading large text / csv files in Julia takes a long time compared to Python. Here are the times to read a file whose size is 486.6 MB and has 153895 rows and 644 columns. <

7条回答
  •  攒了一身酷
    2020-12-16 11:28

    There is a relatively new julia package called CSV.jl by Jacob Quinn that provides a much faster CSV parser, in many cases on par with pandas: https://github.com/JuliaData/CSV.jl

提交回复
热议问题