CoolFace
Datasetpublic

jomarie04/cities

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())

sourceHugging Facemitupdated 8mo agoView on Hugging Face
0likes18downloads
Dataset Card

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:

python
import pandas as pd

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