MCPcopy Create free account
hub / github.com/holoviz/hvplot / explorer

Method explorer

hvplot/plotting/core.py:130–151  ·  view source on GitHub ↗

The `explorer` plot allows you to interactively explore your data. Reference: https://hvplot.holoviz.org/user_guide/Explorer.html Parameters ---------- x : string, optional The coordinate variable along the x-axis y : string, optional

(self, x=None, y=None, **kwds)

Source from the content-addressed store, hash-verified

128 return super().__getattribute__(name)
129
130 def explorer(self, x=None, y=None, **kwds):
131 """
132 The `explorer` plot allows you to interactively explore your data.
133
134 Reference: https://hvplot.holoviz.org/user_guide/Explorer.html
135
136 Parameters
137 ----------
138 x : string, optional
139 The coordinate variable along the x-axis
140 y : string, optional
141 The coordinate variable along the y-axis
142 **kwds : optional
143 Additional keywords arguments typically passed to hvplot's call.
144
145 Returns
146 -------
147 The corresponding explorer type based on data, e.g. hvplot.ui.hvDataFrameExplorer.
148 """
149 from ..ui import explorer as ui_explorer
150
151 return ui_explorer(self._data, x=x, y=y, **kwds)
152
153
154class hvPlotTabular(hvPlotBase):

Calls

no outgoing calls