import hvplot.pandas # noqa import pandas as pd from bokeh.sampledata.stocks import AAPL df = pd.DataFrame(AAPL) df.head() df.hvplot.hexbin('open', 'volume', logz=True, clabel='Count', height=400, width=500)