Estimating DataFrame size
Now check how much memory you saved. The numeric downcasts from the previous exercise have already been applied for you in movies_optimized. The original size is printed so you can compare it against the optimized one.
Latihan ini merupakan bagian dari kursus
Scaling and Optimizing Data Pipelines with Polars
Instruksi latihan
- Use the right method on
movies_optimizedto estimate its size in megabytes.
Latihan interaktif langsung praktik
Cobalah latihan ini dengan melengkapi kode contoh ini.
# Get the optimized size
after_size_mb = movies_optimized.____("____")
print(after_size_mb)