I have a dt
:
JavaScript
x
13
13
1
>>> dt
2
sales mg
3
ID 600519 600809 600519 600809
4
RPT_Date
5
20060331 13.5301 5.8951 9.4971 3.0408
6
20060630 6.6048 2.4081 4.3088 1.4040
7
20060930 12.3889 3.6053 9.1455 2.0754
8
20061231 16.5100 3.3659 12.4682 1.8810
9
20070331 15.8754 5.9129 11.5833 3.6736
10
20070630 10.4155 3.5759 7.8966 2.2812
11
20070930 18.2929 3.5280 14.3552 2.1584
12
20071231 27.7905 5.4510 23.7820 3.2568
13
And use pandas function plot
to create a barplot object
JavaScript
1
4
1
>>> fig = dt.plot(kind='bar', use_index=True)
2
>>> fig
3
<matplotlib.axes.AxesSubplot object at 0x0B387150>
4
But I want a <matplotlib.figure.Figure object>
instead to pass to other function, just like the object type below:
JavaScript
1
3
1
>>> plt.figure()
2
<matplotlib.figure.Figure object at 0x123A6910>
3
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
1
2
1
ax.get_figure()
2
Full example:
JavaScript
1
4
1
df = pd.DataFrame({'a': range(10)})
2
ax = df.plot.barh()
3
ax.get_figure()
4