cities / README.md
jomarie04's picture
Update README.md
4495750 verified
metadata
license: mit

Cities Dataset

This dataset contains a collection of famous cities around the world with population data.

File

  • cities.csv

Columns

  • id – unique identifier
  • city_name – name of the city
  • country – country where the city is located
  • population_millions – approximate population in millions

Usage

Load the dataset in Python using pandas:

import pandas as pd

cities = pd.read_csv("cities.csv")
print(cities.head())