queryverse / queryverse/CSVFiles.jl
MethodError: no method matching iterate(::CSVFiles.CSVFile)
Open
Nobody has claimed this yet.
- Dominant language
- Julia
- Stars
- 52
- Forks
- 12
- Avg merge
- 18h 21m
- Merged PRs (30d)
- 3
Description
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?
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the README.md usage example and reproduce the failure using CSVFiles with TypedTables or IterableTables and the shown load("boo.csv") |> Table expression. Trace the CSVFiles.CSVFile integration with the table packages; done means the documented pipeline no longer raises MethodError: no method matching iterate(::CSVFiles.CSVFile).
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- data
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100