Plotting with Matplotlib#
This page demonstrates the use of the Matplotlib plotting backend, the equivalent page demonstrating the Plotly backend may be found here
As we discovered in the Introduction, HoloViews allows plotting a variety of data types. Here we will use the sample data module and load the pandas and dask hvPlot API:
import numpy as np
import hvplot.pandas # noqa
import hvplot.dask # noqa
hvplot.extension('matplotlib')