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
would write a csv with header line one two three. Instead it writes a two line csv with rand(3,6)[:] as first and one two three as second line (i.e. being compatible with what readdlm does with the header option set).
Maybe the easiest fix would be to just change writedlm to only allow the quotes options, which seems to be the only one actually doing anything:
I expected that
would write a csv with header line
one two three
. Instead it writes a two line csv withrand(3,6)[:]
as first andone two three
as second line (i.e. being compatible with whatreaddlm
does with theheader
option set).Maybe the easiest fix would be to just change
writedlm
to only allow thequotes
options, which seems to be the only one actually doing anything:DelimitedFiles.jl/src/DelimitedFiles.jl
Lines 781 to 786 in db79c84
The text was updated successfully, but these errors were encountered: