Read NULL as missing in dataframe

You’re looking for Home · CSV.jl

By default, you get a missing value if and only if the field is empty in the CSV file.

To get missing both for empty fields and NULL, you can use CSV.File(..., missingstrings=["NULL", ""]).

2 Likes