🧪 We're running a cheminformatics notebook competition!

Enter by October 4
53 / 103
CellTour

CellTour

by marimo team

Create guided tours through notebook cells.

About this notebook

This notebook shows the CellTour widget from the wigglystuff library. It imports only marimo and CellTour. The notebook does not load a dataset. Instead it guides a reader through its own cells. The author wraps CellTour in mo.ui.anywidget and passes a list of steps. Each step names a target cell, a title, and a short description.

A reader starts the tour and moves through the steps in order. Each step points to one cell in the notebook. The step shows its title and description text next to that cell. The example includes three steps. They point to the imports cell, the tour definition cell, and a small example code cell with the values x, y, and z.

You can target a cell in two ways. You can use cell_name to match the cell function name, such as "foobar". You can also use cell with an integer index, such as 1 or 2. The comments state that CellTour gives a simpler API than DriverTour.

Related notebooks