Skip to content

Commit 62c140f

Browse files
authored
Final QA (#644)
1 parent c55e2d9 commit 62c140f

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

polars-lazyframe/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# How to Work With Polars LazyFrames
22

3-
This folder contains completed notebooks and other files used in the Real Python tutorial [How to Work With Polars LazyFrames](https://realpython.com/how-to-work-with-polars-lazyframe/).
3+
This folder contains completed notebooks and other files used in the Real Python tutorial [How to Work With Polars LazyFrames](https://realpython.com/polars-lazyframe/).
44

55
**The following files are included:**
66

polars-lazyframe/tutorial_code.ipynb

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
},
8282
{
8383
"cell_type": "code",
84-
"execution_count": 2,
84+
"execution_count": null,
8585
"id": "784b7616-643a-46bc-b449-0fbc5f390178",
8686
"metadata": {},
8787
"outputs": [
@@ -133,13 +133,12 @@
133133
" \"year\": [1970, 1973, 1985, 1991, 1995],\n",
134134
"}\n",
135135
"\n",
136-
"lf = pl.LazyFrame(programming_languages)\n",
137-
"lf.collect()"
136+
"pl.LazyFrame(programming_languages).collect()"
138137
]
139138
},
140139
{
141140
"cell_type": "code",
142-
"execution_count": 3,
141+
"execution_count": null,
143142
"id": "168d4db9-87c0-4ce2-aaab-35f128a03788",
144143
"metadata": {},
145144
"outputs": [
@@ -198,8 +197,8 @@
198197
" \"year\": pl.Int32,\n",
199198
"}\n",
200199
"\n",
201-
"lf = pl.LazyFrame(programming_languages, schema=d_types)\n",
202-
"lf.collect()"
200+
"languages = pl.LazyFrame(programming_languages, schema=d_types)\n",
201+
"languages.collect()"
203202
]
204203
},
205204
{

0 commit comments

Comments
 (0)