Inizia subitoInizia gratis

Inspecting a Parquet schema

The Seattle library team has converted their classroom checkouts file to Parquet for faster analytics. Before they build any new reports, they want to confirm the column names and dtypes inside the file without loading any data.

polars is loaded as pl, and the path to the Parquet file is in PARQUET_PATH.

Questo esercizio fa parte del corso

Scaling and Optimizing Data Pipelines with Polars

Visualizza corso

Istruzioni dell'esercizio

  • Inspect the Parquet file at PARQUET_PATH using the right method.

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

# Inspect the Parquet schema
schema = pl.____(PARQUET_PATH)
print(schema)
Modifica ed esegui il codice