Koushik Khan akshayka commited on
Commit
15a2dfa
·
unverified ·
1 Parent(s): f2c1d1b

updated section header - Query optimization

Browse files

Co-authored-by: Akshay Agrawal <[email protected]>

Files changed (1) hide show
  1. polars/01_why_polars.py +1 -1
polars/01_why_polars.py CHANGED
@@ -152,7 +152,7 @@ def _(mo):
152
  def _(mo):
153
  mo.md(
154
  """
155
- ## (c) Query Optimization 📈
156
 
157
  A key factor behind Polars' performance lies in its **evaluation strategy**. While Pandas defaults to **eager execution**, executing operations in the exact order they are written, Polars offers both **eager and lazy execution**. With lazy execution, Polars employs a **query optimizer** that analyzes all required operations and determines the most efficient way to execute them. This optimization can involve reordering operations, eliminating redundant calculations, and more.
158
 
 
152
  def _(mo):
153
  mo.md(
154
  """
155
+ ### Query optimization 📈
156
 
157
  A key factor behind Polars' performance lies in its **evaluation strategy**. While Pandas defaults to **eager execution**, executing operations in the exact order they are written, Polars offers both **eager and lazy execution**. With lazy execution, Polars employs a **query optimizer** that analyzes all required operations and determines the most efficient way to execute them. This optimization can involve reordering operations, eliminating redundant calculations, and more.
158