3

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?

Sajan
  • 1,247
  • 1
  • 5
  • 13
thinwybk
  • 4,193
  • 2
  • 40
  • 76

1 Answers1

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