Mulai sekarangMulai gratis

Unnesting production_country

Back to the movie dataset from the streaming startup. This time, focus on production_country: each row holds two nested fields, a country code and a country name. Unnest the struct so those fields become regular top-level columns.

Latihan ini merupakan bagian dari kursus

Scaling and Optimizing Data Pipelines with Polars

Lihat Kursus

Instruksi latihan

  • Unnest the production_country struct column so its fields become regular columns.

Latihan interaktif langsung praktik

Cobalah latihan ini dengan melengkapi kode contoh ini.

# Flatten the struct into columns
result = movies.____("production_country").select(
    "movie_title", "code", "name"
).head(8)
print(result)
Edit dan Jalankan Kode