Mulai sekarangMulai gratis

Reading the naive plan

The team wants to understand how Polars sees a query before any data is read. Printing a LazyFrame shows the naive plan: your code reflected back in the order you wrote it, with no optimizations applied.

polars is loaded as pl, and the LazyFrame top_titles_by_format is available. It computes the top 5 digital formats by number of unique titles.

Latihan ini merupakan bagian dari kursus

Scaling and Optimizing Data Pipelines with Polars

Lihat Kursus

Instruksi latihan

  • Show the naive plan for top_titles_by_format.

Latihan interaktif langsung praktik

Cobalah latihan ini dengan melengkapi kode contoh ini.

# Show the naive plan
____(top_titles_by_format)
Edit dan Jalankan Kode