Results Pane
The results pane is the output area we render underneath each executed cell in the notebook editor. Every output area is independent: a notebook containing twelve executed cells carries twelve separate panes, each with its own status indicator, its own execution timing and its own expansion controls.
There's no separate console. Output appears immediately beneath the code that generated it.
Cell Status and Timing
The cell header carries a status and timing chip, reporting an execution time such as 0.187s. It's the quickest way to establish whether the displayed output corresponds to your latest modification or to an execution from an hour ago. Hovering it shows, verbatim:
Execution Time: 0.187sRun By: <email>Last Run: <timestamp>
The execution counter to the left of the chip, for example [ 3 ], records the order in which the cell last ran. Because the counter increments per execution rather than per position, a cell you've rerun repeatedly during debugging carries a higher number than cells positioned further down, and that mismatch is the usual indication that the notebook's outputs no longer correspond to a straightforward top-to-bottom reading.
Output Area Controls
The output area has two icons:
| Position | Control | Purpose |
|---|---|---|
| Left | Details | Opens the details view for the output. |
| Right | Expand / fullscreen toggle | Expands the output to fill the editor, and collapses it again. |
Clearing Outputs
The trash icon on the second row of the editor top bar clears every cell output in the notebook. Its tooltip reads Clear All Outputs.
Clearing removes the rendered output only. Your code remains untouched, and the execution counters retain their numbering for the session.