Problem with CSV.jl reading csv file with extra spaces

In lack of better solution, you could remove all spaces while reading the csv file using this trick from @GunnarFarneback:

CSV.File(IOBuffer(replace(read(csvfile, String), " " => "")), missingstring = "", types = [Int, Int, Int])