From bd68b86bc28650302411dfb5788917f865adce82 Mon Sep 17 00:00:00 2001 From: Nok Lam Chan Date: Fri, 16 Aug 2024 12:04:00 +0100 Subject: [PATCH] minor doc change (#4065) Signed-off-by: Nok --- .../notebooks_and_ipython/kedro_and_notebooks.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/source/notebooks_and_ipython/kedro_and_notebooks.md b/docs/source/notebooks_and_ipython/kedro_and_notebooks.md index f4d22642f3..e9026f20eb 100644 --- a/docs/source/notebooks_and_ipython/kedro_and_notebooks.md +++ b/docs/source/notebooks_and_ipython/kedro_and_notebooks.md @@ -281,6 +281,13 @@ For more details, run `%reload_kedro?`. ``` {note} This is still an experimental feature and is currently only available for Jupyter Notebook (>7.0), Jupyter Lab, IPython, and VS Code Notebook. If you encounter unexpected behaviour or would like to suggest feature enhancements, add it under [this github issue](https://github.com/kedro-org/kedro/issues/3580). ``` + +When using this feature in Jupyter Notebook you will need to have the following requirements and minimum versions installed: +```yaml +ipylab>=1.0.0 +notebook>=7.0.0 +``` + You can load the contents of a node in your project into a series of cells using the `%load_node` line magic. To use `%load_node`, the node you want to load needs to fulfil two requirements: - The node needs to have a name - The node's inputs need to be persisted @@ -309,11 +316,6 @@ To be able to access your node's inputs, make sure they are explicitly defined i You can then run the generated cells to recreate how the node would run in your pipeline. You can use this to explore your node's inputs, behaviour, and outputs in isolation, or for [debugging](#debugging-a-kedro-project-within-a-notebook). -When using this feature in Jupyter Notebook you will need to have the following requirements and minimum versions installed: -```yaml -ipylab>=1.0.0 -notebook>=7.0.0 -``` ### `%run_viz` line magic