CSVFiles.jl icon indicating copy to clipboard operation
CSVFiles.jl copied to clipboard

FileIO.jl integration for CSV files

Results 19 CSVFiles.jl issues
Sort by recently updated
recently updated
newest added

[DocumentFormat.jl](https://github.com/julia-vscode/DocumentFormat.jl) would suggest these formatting changes

no changelog

It would be convenient to have a support for DAT files with the `.dat` extension and with space/tab separators. The `CSVFiles` package can already be used to read the space-separated...

I have tracked down an error I initially found in trying to use query.jl, but the root cause seems to be an apparent bug when importing csv files where the...

I believe the following code should work, given the information on the `README.md`. ```julia julia> using CSVFiles julia> load("boo.csv") 1x4 CSV file a │ b │ c │ d ──┼───┼───┼──...

~~This currently fails the `savestreaming` test in a way that I can't make any sense of: I get a `MethodError: no method matching -(::String, ::String)` thrown by `FileIO.savestreaming`. Does anyone...

In https://github.com/bkamins/Julia-DataFrames-Tutorial/blob/master/04_loadsave.ipynb I had to disable CSVFiles.jl file reading tests as it failed to load a small file (that reads in a few seconds otherwise) in any reasonable time. The...

bug

Should have done that a long time ago... Needs tests, and then maybe I'll wait until we have another change that is also breaking, to bunch a number of breaking...

[Here](https://stackoverflow.com/questions/52590792/how-do-i-read-a-gzipped-csv-file-in-julia) is one approach, would be nice to support this in some easier way. Not super clear how that would interact with the FileIO story, though...

enhancement

Is it possible to load only the first `N` rows of a CSV file? For example, if I have a 1001 row file (one header row and 1000 rows of...

enhancement