1. Learn
  2. /
  3. Courses
  4. /
  5. Exploratory Data Analysis in Python

Exercise

Validating continents

Your colleague has informed you that the data on unemployment from countries in Oceania is not reliable, and you'd like to identify and exclude these countries from your unemployment data. The .isin() function can help with that!

Your task is to use .isin() to identify countries that are not in Oceania. These countries should return True while countries in Oceania should return False. This will set you up to use the results of .isin() to quickly filter out Oceania countries using Boolean indexing.

The unemployment DataFrame is available, and pandas has been imported as pd.

Instructions 1/2

undefined XP
    1
    2
  • Define a Series of Booleans describing whether or not each continent is outside of Oceania; call this Series not_oceania.