Statistical Plots#

In addition to the plots available via the plot interface, hvPlot makes a number of more sophisticated, statistical plots available that are modelled on pandas.plotting. To explore these, we will load the iris and stocks datasets from Bokeh:

import pandas as pd
import hvplot.pandas  # noqa

from bokeh.sampledata import iris, stocks 

iris = iris.flowers