Studio 02 Pandas

Author

Serge Rey

Instructions

Teams
DUE: Wednesday, September 11, 2024 3:30pm

Using the merged.csv file you created in the studio, answer the following questions.

The team leader will submit a pdf version of the notebook showing all the work to answer the questions.

The first cell of the notebook should have a list of the team members (first and last names) with the team leader in bold. (Hint: Markdown cell).

Setup

import pandas as pd

df = pd.read_csv("merged.csv")

Which region has the capital city with the largest population of all capital cities?

# your code here

Which region contains the largest number of people living in its capital cities?

# your code here

Which region has the capital cities with the highest population density (median)?

# your code here