Skip to content
Advertisement

How to return a matplotlib.figure.Figure object from Pandas plot function

I have a dt:

JavaScript

And use pandas function plot to create a barplot object

JavaScript

But I want a <matplotlib.figure.Figure object> instead to pass to other function, just like the object type below:

JavaScript

So how can I transform <matplotlib.axes.AxesSubplot object> to <matplotlib.figure.Figure object> or directly return “Figure object” from Pandas plot ?

Advertisement

Answer

You can get the figure from the axes object:

JavaScript

Full example:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement