Spaces:
Running
Running
updated section header - Query optimization
Browse filesCo-authored-by: Akshay Agrawal <[email protected]>
- 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 |
-
|
| 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 |
|