Skip to content

Commit

Permalink
Make minor cosmetic improvements to Kedro notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed Jun 14, 2024
1 parent 41c295d commit 63fe507
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions 03 - First Steps with Kedro.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"tags": []
},
"source": [
"# First steps with Kedro\n",
"# First Steps with Kedro\n",
"\n",
"<img src=\"static/kedro-horizontal-color-on-light.png\" width=\"400\" alt=\"Kedro\">\n",
"\n",
Expand Down Expand Up @@ -335,7 +335,7 @@
")\n",
"```\n",
"\n",
"Let's not do that though, Kedro will take care of it.\n",
"Let's not do that though; Kedro will take care of it.\n",
"\n",
"The next step is to assemble the pipeline. In this case, it will only have 1 node:"
]
Expand Down Expand Up @@ -421,19 +421,18 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"### Exercise 2\n",
"\n",
"Complete the data processing pipeline by defining a `create_model_input_table_function`:\n",
"Complete the data processing pipeline by defining a `create_model_input_table` function that combines the preprocessed flights and weather data:\n",
"\n",
"```python\n",
"def create_model_input_table(flights, weather) -> ir.Table:\n",
" ...\n",
"```\n",
"\n",
"(see the `join` explanation in the Ibis notebook)\n",
"_Hint_: See the `join` explanation in the Ibis notebook.\n",
"\n",
"and then recreate the pipeline so that it has two nodes.\n",
"Then, recreate the pipeline so that it has two nodes.\n",
"\n",
"_Extra points_ if your node drops the null values of the resulting table and selects only a subset of the columns."
]
Expand Down

0 comments on commit 63fe507

Please sign in to comment.