Closed kaiminglee closed 8 years ago
Namibia's ISO 2char code is 'NA' but missing in the data.
Probably, pandas read_csv was used somewhere in the processing, which interprets 'NA' as missing by default (use keep_default_na=False to prevent this).
Good catch, @kaiminglee ! thanks
We were also missing Continent for every country in North America (NA)...
Continent
Culprit turned out to be csvkit's csvsort but calling with the --no-inference flag did the trick
csvkit
--no-inference
Namibia's ISO 2char code is 'NA' but missing in the data.
Probably, pandas read_csv was used somewhere in the processing, which interprets 'NA' as missing by default (use keep_default_na=False to prevent this).