You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I frequently work with data that uses different delimiters. I would like to be able to store this data as a CSV file without first having to go through and replace the delimiters with just a single choice. The enhancements that I would like to see are for CSV.File as follows:
The 'delim' argument also accepts an Array of Char or String entries to use as delimiters.
The 'ignorerepeated' argument could be updated to consider a three state system: 1) All duplicate delimiters ignored 2) Only duplicate delimiters that are the same are ignored and 3) Each delimiter treated as unique
Thank you for your consideration!
The text was updated successfully, but these errors were encountered:
As mentioned in the thread which I quote at the end, readdlm() is "deprecated" (actually, I don't know what that means in practice) and CSV.jl is recommended as an alternative.
But, currently, CSV.jl isn't able to treat a string of consecutive "space" characters as a single delimiter (whereas readdlm() is). Because of this, you very often have to preprocess text input files to use them with CSV.jl.
I frequently work with data that uses different delimiters. I would like to be able to store this data as a CSV file without first having to go through and replace the delimiters with just a single choice. The enhancements that I would like to see are for CSV.File as follows:
Thank you for your consideration!
The text was updated successfully, but these errors were encountered: