pandas does allow plotting with third party plotting backends. I know that matplotlib
(the default one) and hvplot
are supported as plotting backends. But I could not find a complete list of supported backends yet. Which plotting backends are supported right now?
Asked
Active
Viewed 1,196 times
3
1 Answers
2
You need pandas >= 0.25 to change the plotting backend.
These are the available plotting backends that I know of:
You can set the backend for the whole session as follows:
pd.options.plotting.backend = 'plotly'
Or for just one plot like this:
df.plot(backend='plotly')
See also:
Change pandas plotting backend to get interactive plots instead of matplotlib static plots

Sander van den Oord
- 10,986
- 5
- 51
- 96