sfu-db / dataprep

Open-source low code data preparation library in python. Collect, clean and visualization your data in python with a few lines of code.
http://dataprep.ai
MIT License
1.97k stars 201 forks source link

Bonaire not possible to validate #957

Open joaooliveiramc opened 1 year ago

joaooliveiramc commented 1 year ago

I don't know if this is really a bug but Bonaire is no possible to validate

            list=['Bonaire','France']
            df = pd.DataFrame(list, "country")
            unknown_countries = df[country][~validate_country(df["country], strict=False)]
            print(unknown_countries)

On country_data.tsv there are two entries for Bonaire, on line 14 and 29. Is this supposed to be this way? Is there a way around this? This country is showing from information coming from an external service not controlled by me.