From 63fe507752bc049b36f243089863c4587b7ea73b Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Fri, 14 Jun 2024 11:22:40 +0000 Subject: [PATCH] Make minor cosmetic improvements to Kedro notebook --- 03 - First Steps with Kedro.ipynb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/03 - First Steps with Kedro.ipynb b/03 - First Steps with Kedro.ipynb index 6a1cd59..10e60dc 100644 --- a/03 - First Steps with Kedro.ipynb +++ b/03 - First Steps with Kedro.ipynb @@ -10,7 +10,7 @@ "tags": [] }, "source": [ - "# First steps with Kedro\n", + "# First Steps with Kedro\n", "\n", "\"Kedro\"\n", "\n", @@ -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:" ] @@ -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." ]