Hi,
I’m reading a csv file (originally obtained from SQL) that has the string “NULL” to signify no value. This is not an empty string (although I am curious how that gets tackled too).
How do I read this string as a missing type in Julia?
df = DataFrame( CSV.File( “file1.csv” ) )
I was hoping there would be a argument in CSV.File or DataFrames I could use to declare missing values. Coming from an R background, in the data.table R package you could do something like:
df = fread( “file.csv”, na.strings = “NULL”)
Any tips?