class documentation

Base class for interactive matplotlib plots.

Parameters
figurea matplotlib.figure.Figure
**kwargskeyword arguments for the fiftyone.core.plots.base.InteractivePlot constructor
Method __init__ Undocumented
Method save Saves the plot as an image.
Method show Shows this plot.
Property supports_session_updates Whether this plot supports automatic updates in response to session changes.
Method _freeze Undocumented
Method _reopen Undocumented
Method _show Undocumented
Instance Variable _figure Undocumented
Instance Variable _in_notebook_context Undocumented

Inherited from InteractivePlot:

Static Method recommend_link_type Recommends a link type for the given info.
Method register_disconnect_callback Registers a callback that can disconnect this plot from a SessionPlot connected to it.
Method register_selection_callback Registers a selection callback for this plot.
Method register_sync_callback Registers a callback that can sync this plot with a SessionPlot connected to it.
Method reset Resets the plot to its default state.
Method select_ids Selects the points with the given IDs in this plot.
Method selection_mode.setter Undocumented
Instance Variable label_fields Undocumented
Property init_view A fiftyone.core.collections.SampleCollection defining the initial view from which to derive selection views when points are selected in the plot.
Property selected_ids A list of IDs of the currently selected points.
Property selection_mode The current selection mode of the plot.
Method _register_disconnect_callback Undocumented
Method _register_selection_callback Undocumented
Method _register_sync_callback Undocumented
Method _select_ids Undocumented
Instance Variable _disconnect_callback Undocumented
Instance Variable _init_fcn Undocumented
Instance Variable _init_fcn_view Undocumented
Instance Variable _init_view Undocumented
Instance Variable _selection_callback Undocumented
Instance Variable _selection_mode Undocumented
Instance Variable _sync_callback Undocumented
Property _selected_ids Undocumented

Inherited from ResponsivePlot (via InteractivePlot):

Method connect Connects this plot, if necessary.
Method disconnect Disconnects the plot, if necessary.
Method freeze Freezes the plot, replacing it with a static image.
Property is_connected Whether this plot is currently connected.
Property is_disconnected Whether this plot is currently disconnected.
Property is_frozen Whether this plot is currently frozen.
Method _connect Undocumented
Method _disconnect Undocumented
Instance Variable _connected Undocumented
Instance Variable _disconnected Undocumented
Instance Variable _frozen Undocumented
Instance Variable _link_type Undocumented

Inherited from Plot (via InteractivePlot, ResponsivePlot):

Method _repr_pretty_ Undocumented
def save(self, path, dpi=None, **kwargs): (source)

Saves the plot as an image.

Parameters
paththe path to write the image
dpi:Nonea resolution in dots per inch
**kwargskeyword arguments for matplotlib.pyplot.savefig
def show(self): (source)
@property
supports_session_updates = (source)

Whether this plot supports automatic updates in response to session changes.

def _show(self, **_): (source)

Undocumented

_in_notebook_context = (source)

Undocumented