Jacob Quinn

Results 513 comments of Jacob Quinn

I'm not exactly sure what the request here is. Something for CSV.jl or DataFrames.jl?

Probably the most reliable way is to do something like: ```julia for r in CSV.Rows("test.csv") # something end GC.gc(); GC.gc() rm("test.csv") ``` the problem is that the file isnt' technically...

yes, that should work; though sometimes you have to call `GC.gc()` twice in order to fully collect an object.

If we go the finalizer route, we'll just have to add some checks in other places like `iterate` to ensure a `CSV.Rows` is still "valid" and hasn't been finalized since...

Alright, sorry for the slow response here, it might be a little hairy, but here's some guidance/sketch, though I'll admit I haven't thought this through all the way to the...

Yeah..........this is mostly fine. I'm hopeful that by the CSV.jl 1.0 release, we can get the time-to-first-read to be really competitive with DelimitedFiles.jl and then I don't think there's really...

Yeah, that's fair. I'm fine adding that text then.

PR up: https://github.com/JuliaData/DataAPI.jl/pull/35. So I realized we don't really need to move anything from Tables.jl; the definitions there are...not really related and not really necessary. Like, they're not useful generically....

Sorry, I'm not following the request here. I don't understand the syntax you're using in the data example. Can you explain a little more what exactly you would pass to...

As a note to myself, I think this should be possible if we allow a way to have the user pass what sentinels/values should be used for `SentinelVector`. Might be...