Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (17 loc) · 1.21 KB

08_visualisation.md

File metadata and controls

28 lines (17 loc) · 1.21 KB

Visualise your pipeline

Kedro Viz shows you how your Kedro data pipelines are structured. You can use it to:

  • See how your datasets and Python functions (nodes) are resolved in Kedro so that you can understand how your data pipeline is built
  • Get a clear picture when you have lots of datasets and nodes by using tags to visualise sub-pipelines
  • Search for nodes and datasets

Follow the Kedro-Viz installation instructions to get set up.

Using kedro-viz

From your terminal, run:

kedro viz

This command will run a server on http://127.0.0.1:4141 and will open up your visualisation on a browser.

Note: If port 4141 is already occupied, you can run Kedro-Viz server on a different port by executing kedro viz --port <alternative-port>.

Examples of kedro-viz

  • You can have a look at a retail ML use case here
  • And an example of this Spaceflights pipeline here

Go to the next page