import hvplot.pandas # noqa from bokeh.sampledata.iris import flowers as df df.sample(n=5) df.hvplot.scatter(x='sepal_length', y='sepal_width', by='species', legend='top', height=400, width=400) df.hvplot.scatter(x='sepal_length', y='sepal_width', by='species', legend='top', height=400, width=400, hover_cols=["species", "sepal_length", "sepal_width", "petal_width"])