queryverse / CSVFiles.jl

FileIO.jl integration for CSV files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

m-wells opened this issue · comments

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
──┼───┼───┼──
1234

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?