Canada.csv Online

: Use the Country column as the index to make searching for specific nations (e.g., df_can.loc['India'] ) easier.

: Change OdName to Country and AreaName to Continent for better readability. CANADA.csv

: Often used to compare the top 5 countries that contributed the most immigrants. : Use the Country column as the index

: Development status (Developing or Developed regions). 1980–2013 : Annual immigration counts for each year. 2. Loading the Data CANADA.csv

import pandas as pd # Direct link to the official practice dataset url = 'https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-DV0101EN-SkillsNetwork/Data%20Files/Canada.csv' df_can = pd.read_csv(url) # Display the first few rows print(df_can.head()) Use code with caution. Copied to clipboard 3. Essential Data Cleaning