You will need the below DataFrames to answer the following questions. country_map_df = pd.read_csv('https://raw.githubusercontent.com/Explore-AI/Public-Data/master/AnalyseProject/country_code_map.csv', index_col='Country Code') population_df = pd.read_csv('https://raw.githubusercontent.com/Explore-AI/Public-
You will need the below DataFrames to answer the following questions.
country_map_df = pd.read_csv('https://raw.githubusercontent.com/Explore-
population_df = pd.read_csv('https://raw.githubusercontent.com/Explore-AI/Public-Data/master/AnalyseProject/world_population.csv', index_col='Country Code')
meta_df = pd.read_csv('https://raw.githubusercontent.com/Explore-AI/Public-Data/master/AnalyseProject/metadata.csv', index_col='Country Code')
DataFrame specifications:
The DataFrames provide information about the population of the world for various years. Some things to note:
- All DataFrames have a Country Code as an index, which is a three-letter code referring to a country.
- The country_map_df data maps the Country Code to a Country Name.
- The population_df data contains information on the population for a given country between the years 1960 and 2017.
- The meta_df data contains meta-information about each country, including its geographical region, its income group, and a comment on the country as a whole.
Question
Write a function that will return a list of countries for a specified region and income group. If the specified region and income group do not return a country, return None as the value.
Function specifications
Argument(s):
- region (string) →→ the region you want to query.
- income_group (string) →→ the income group you want to query.
Return:
- countries (list) →→ return a list of countries that match the search criteria or None if no countries are found.
Expected output
find_countries_by_region_and_income('South Asia','High income')==None find_countries_by_region_and_income('Europe & Central Asia','Low income')==['Tajikistan'] find_countries_by_region_and_income('Sub-Saharan Africa','Upper middle income')==['Botswana','Gabon','Equatorial Guinea','Mauritius','Namibia','South Africa']
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 4 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)