Supported Output Widget Types
Below is a comprehensive list of supported output widget types.Plot Output
Plot Output
The Plot output widget allows you to display matplotlib Figures, SubFigures, Axes, or Plotly figures in your notebook interface.Plotly Figure Example:
Widget Parameters
label
: string optional label displayed above the plotsource
: Figure | SubFigure | Axes | BaseFigure the plot object to display. Can be:- Matplotlib Figure
- Matplotlib SubFigure
- Matplotlib Axes
- Plotly Figure (BaseFigure)
key
: string optional unique identifier for the widgetUsage Notes
- The plot widget automatically detects the plot title from the source object
- The widget creates an interactive display of your plot that users can interact with
- In the notebook outline, the plot title from the source object will be used if no label is provided
Examples
Matplotlib Axes Example:Table Output
Table Output
The Table output widget allows you to display tabular data in an interactive table format.
Widget Parameters
label
: string optional label displayed above the tablesource
: DataFrame the pandas DataFrame to displaykey
: string optional unique identifier for the widgetIGV Output
IGV Output
The IGV output widget allows you to visualize and interact with your genomic data.
Widget Parameters
options
: dict required dictionary of options for configuring the IGV browser. See Browser Creation
for a list of available options. See Tracks for configuration options for each track.Usage Notes
- The IGV widget accepts both Latch paths and generic URLs.
- If a Latch path is provided without an index, the widget will automatically generate and pull an index for the file.