hvplot.hvPlot.explorer#

hvPlot.explorer(x=None, y=None, **kwds)[source]#

The explorer plot allows you to interactively explore your data.

Reference: https://hvplot.holoviz.org/user_guide/Explorer.html

Parameters:
xstring, optional

The coordinate variable along the x-axis

ystring, optional

The coordinate variable along the y-axis

**kwdsoptional

Additional keywords arguments typically passed to hvplot’s call.

Returns:
The corresponding explorer type based on data, e.g. hvplot.ui.hvDataFrameExplorer.

Examples