Read CSV files faster in Julia
问题 I have noticed that loading a CSV file using CSV.read is quite slow. For reference, I am attaching one example of time benchmark: using CSV, DataFrames file = download("https://github.com/foursquare/twofishes") @time CSV.read(file, DataFrame) Output: 9.450861 seconds (22.77 M allocations: 960.541 MiB, 5.48% gc time) 297 rows × 2 columns This is a random dataset, and a python alternate of such operation compiles in fraction of time compared to Julia. Since, julia is faster than python why is