Subplots#

Subplots#

When plotting multiple columns, hvPlot will overlay the plots onto one axis by default so that they can be compared easily in a compact format:

import xarray as xr
import hvplot.pandas  # noqa
import hvplot.xarray  # noqa

from hvplot.sample_data import airline_flights, us_crime

us_crime.hvplot(x='Year', y=['Burglary rate', 'Violent Crime rate', 'Robbery rate'], value_label='Rate')