CSVFiles.jl
CSVFiles.jl copied to clipboard
Load first N rows of a file
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 data), is it possible for me to load only the header row and the first 500 rows of data?
Not at the moment, it first needs to be implemented in TextParse: https://github.com/JuliaComputing/TextParse.jl/issues/61.