We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missingsstring
MWE:
julia> CSV.write("test.csv", DataFrame(;a=[missing,1], c=[2,missing]); missingsstring="NA") shell> cat test.csv a,c ,2 1,
The text was updated successfully, but these errors were encountered:
Interestingly, I can only reproduce when using dataframes, not with a vector of named tuples
julia> CSV.write("test.csv", DataFrame(;a=[missing,1], c=[2,missing]); missingsstring="NA") "test.csv" shell> cat test.csv a,c ,2 1, julia> t = [(a = 1, b = 2), (a = missing, b = 4)]; julia> CSV.write("test.csv", t; missingstring = "NA") "test.csv" shell> cat test.csv a,b 1,2 NA,4
Sorry, something went wrong.
@haberdashPI The issue you face is simply a typo. You want missingstring, rather than missingsstring (you have an extra s)
missingstring
s
We can close this issue. However @quinnj should we try to implement stricter keyword argument handling?
No branches or pull requests
MWE:
The text was updated successfully, but these errors were encountered: