hvPlot#
A familiar and high-level API for data exploration and visualization
.hvplot()
is a powerful and interactive Pandas-like .plot()
API
By replacing .plot()
with .hvplot()
you get an interactive figure. Try it out below!
import hvplot.pandas
from bokeh.sampledata.penguins import data as df
df.hvplot.scatter(x='bill_length_mm', y='bill_depth_mm', by='species')