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#

Simple explorer#

import hvplot.pandas  # noqa

df = hvplot.sampledata.penguins("pandas")

hvexplorer = df.hvplot.explorer()
# Start: only required for building the site
hvexplorer.param.update(x='bill_length_mm', y_multi=['bill_depth_mm'], by=['species'])
hvexplorer.labels.title = 'Penguins Scatter'
# End
hvexplorer
This web page was generated from a Jupyter notebook and not all interactivity will work on this website.