LoslegenKostenlos starten

Adding host information

You want to enrich your listings with host details. A hosts DataFrame contains host names and cities, linked by a shared host_id column. Join these DataFrames to see which host manages each property.

polars is loaded as pl, and the DataFrames hotels and hosts are available for you.

Diese Übung ist Teil des Kurses

<Kurs>Data Transformation with Polars</Kurs>
Kurs ansehen

Übungsanweisungen

  • Join hotels with hosts on host_id to keep only matching rows.
  • Print a few rows to check the join worked.

Interaktive praktische Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Join hotels with hosts on host_id
enriched = hotels.____(hosts, on="____", how="____")

# Print a few rows
print(enriched.____())
Code bearbeiten und ausführen