Read file with CSV.read

I think this works with https://github.com/davidanthoff/CSVFiles.jl:

using FileIO, CSVFiles, DataFrames

 load("data.csv", spacedelim=true, header_exists=false) |> DataFrame

Make sure you do a Pkg.update() first, the underlying parser GitHub - queryverse/TextParse.jl: A bunch of fast text parsing tools only recently got support for white space delimited files.

1 Like