class documentation
class ResponsivePlot(Plot): (source)
Known subclasses: fiftyone.core.plots.base.InteractivePlot
, fiftyone.core.plots.base.ViewPlot
Constructor: ResponsivePlot(link_type)
Base class for all responsive plots that can push/pull updates to a linked object.
Parameters | |
link | the link type of the plot |
Method | __init__ |
Undocumented |
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. |
Method | reset |
Resets the plot to its default state. |
Method | show |
Shows the plot. |
Property | is |
Whether this plot is currently connected. |
Property | is |
Whether this plot is currently disconnected. |
Property | is |
Whether this plot is currently frozen. |
Property | link |
The link type between this plot and a connected session. |
Property | supports |
Whether this plot supports automatic updates in response to session changes. |
Method | _connect |
Undocumented |
Method | _disconnect |
Undocumented |
Method | _freeze |
Undocumented |
Method | _reopen |
Undocumented |
Method | _show |
Undocumented |
Instance Variable | _connected |
Undocumented |
Instance Variable | _disconnected |
Undocumented |
Instance Variable | _frozen |
Undocumented |
Instance Variable | _link |
Undocumented |
Inherited from Plot
:
Method | save |
Saves the plot. |
Method | _repr |
Undocumented |
overrides
fiftyone.core.plots.base.Plot.freeze
Freezes the plot, replacing it with a static image.
The plot will also be disconnected.
Only applicable in notebook contexts.
overrides
fiftyone.core.plots.base.Plot.show
overridden in
fiftyone.core.plots.matplotlib.InteractiveMatplotlibPlot
, fiftyone.core.plots.plotly.PlotlyInteractivePlot
, fiftyone.core.plots.views.PlotlyViewPlot
Shows the plot.
The plot will be connected if necessary.
Parameters | |
**kwargs | subclass-specific keyword arguments |
overridden in
fiftyone.core.plots.base.InteractivePlot
The link type between this plot and a connected session.
overridden in
fiftyone.core.plots.base.ViewPlot
, fiftyone.core.plots.matplotlib.InteractiveMatplotlibPlot
, fiftyone.core.plots.plotly.InteractiveHeatmap
, fiftyone.core.plots.plotly.InteractiveScatter
Whether this plot supports automatic updates in response to session changes.
overridden in
fiftyone.core.plots.matplotlib.InteractiveMatplotlibPlot
, fiftyone.core.plots.plotly.InteractiveHeatmap
, fiftyone.core.plots.plotly.InteractiveScatter
, fiftyone.core.plots.views.CategoricalHistogram
, fiftyone.core.plots.views.NumericalHistogram
, fiftyone.core.plots.views.ViewGrid
Undocumented