queryverse / CSVFiles.jl

FileIO.jl integration for CSV files
Other
51 stars 13 forks source link

MethodError: no method matching iterate(::CSVFiles.CSVFile) #81

Open m-wells opened 4 years ago

m-wells commented 4 years ago

I believe the following code should work, given the information on the README.md.

julia> using CSVFiles

julia> load("boo.csv")
1x4 CSV file
a │ b │ c │ d
──┼───┼───┼──
1 │ 2 │ 3 │ 4

julia> using TypedTables

julia> load("boo.csv") |> Table
ERROR: MethodError: no method matching iterate(::CSVFiles.CSVFile)

julia> using IterableTables

julia> load("boo.csv") |> Table
ERROR: MethodError: no method matching iterate(::CSVFiles.CSVFile)

Am I doing something wrong here?