File size: 4,782 Bytes
b9a0f21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
```python
from hvplot.sample_data import us_crime
```

hvPlot allows to generate plots with three different plotting extensions: [Bokeh](https://docs.bokeh.org), [Matplotlib](https://matplotlib.org/) and [Plotly](https://plotly.com/). Support for Maplotlib and Plotly was added in version 0.8.0, before which Bokeh was the only option available and is as such kept as the default plotting extension.

## Loading plotting extensions

Importing hvPlot accessors as shown throughout the documentation (e.g. `import hvplot.pandas`, `import hvplot.xarray`, ...) loads by default the Bokeh plotting extension. The `extension` function can be used after this first import to additionally load the Matplotlib and Plotly plotting extensions, or just one of them. The currently active extension is the first one passed to `extension()`.


```python
import hvplot.pandas  # This import automatically loads the Bokeh extension.
```


```python
hvplot.extension('matplotlib', 'plotly')  # This call loads the Matplotlib (the active one) and Plotly extensions.
```


```python
us_crime.hvplot(x='Year', y='Violent Crime rate')
```

## Switching the plotting extension

The `output` function allows to switch the plotting extension by setting the `backend` parameter. It must be called **after** importing an accessor (e.g. `import hvplot.pandas`) and calling to `extension`:


```python
hvplot.output(backend='plotly')

us_crime.hvplot(x='Year', y='Violent Crime rate')
```

<div class="alert alert-warning" role="alert">
    The <code>extension</code> function could also be used to switch the plotting extension. You should however prefer <code>output</code> as any call to <code>extension</code> actually internally loads code in the output of the cell where it is executed, which can significantly increase the notebook size if <code>extension</code> is called in multiple cells.
</div>

## Plot styling options

On top of the parameters part of `.hvplot()`'s API, a plot can be further customized by providing detailed styling options. By default, i.e. without calling `hvplot.extension()`, the accepted styling options are those of Bokeh, such as `line_dash='dashed'`. When another extension is set with either `extension` or `output` the styling options of that extension are expected, e.g. `linestyle='dashed'` for Matplotlib.


```python
hvplot.output(backend='bokeh')
us_crime.hvplot(x='Year', y='Violent Crime rate', line_dash='dashed')
```


```python
hvplot.output(backend='matplotlib')
us_crime.hvplot(x='Year', y='Violent Crime rate', linestyle='dashed')
```

It is also possible to generates plots with either Matplotlib or Plotly that are constructed with Bokeh options. This can be used for instance to create plots previously generated with Bokeh with another backend, without having to change any parameter. The only change required is to declare Bokeh as the compatible extension with `hvplot.extension('matplotlib', compatibility='bokeh')`, preferably at the beginning of the notebook.


```python
hvplot.extension('matplotlib', compatibility='bokeh')
violent_crime = us_crime.hvplot(x='Year', y='Violent Crime rate', line_dash='dashed')
violent_crime
```


```python
violent_crime.opts.info()
```

You can see that `line_dash='dashed'` has been internally converted to `linestyle='dashed'` that is a valid option for the Matplotlib plotting extension. Note that support for all Bokeh options is currently incomplete and will continue to be improved while equivalent support for Plotly and Matplotlib is planned for a future release

## Obtaining the underlying figure object 

In some cases it can be convenient to construct a plot with hvPlot and then get a handle on the figure object of the underlying plotting library to further customize the plot or to embed it in some more complex application. The `render` function allows to get a handle on the figure object. The following examples show that it's possible to use the API of Bokeh, Matplotlib or Plotly to update the title of the `violent_crime` plot.


```python
violent_crime = us_crime.hvplot(x='Year', y='Violent Crime rate')
```


```python
from bokeh.io import show

bk_fig = hvplot.render(violent_crime, backend='bokeh')
bk_fig.title = 'Violent crime'
show(bk_fig)
```


```python
%matplotlib inline
mpl_fig = hvplot.render(violent_crime, backend='matplotlib')
axes = mpl_fig.get_axes()
axes[0].set_title('Violent crime')
mpl_fig
```


```python
from plotly.graph_objects import Figure

plotly_fig = hvplot.render(violent_crime, backend='plotly')
fig = Figure(plotly_fig).update_layout(title='Violent crime')
fig
```

As demonstrated on this page hvPlot offers you the ability to choose your favorite plotting extension among those supported by [HoloViews](https://holoviews.org/), on which hvPlot is built.