【发布时间】:2015-11-20 01:31:33
【问题描述】:
我有以下代码:
import pandas as pd
import matplotlib
matplotlib.style.use('ggplot')
df = pd.DataFrame({ 'sample1':['foo','bar','bar','qux'], 'score':[5,9,1,7]})
sum_df = df.groupby("sample1").sum()
pie = sum_df.plot(kind="pie", figsize=(6,6), legend = False, use_index=False, subplots=True, colormap="Pastel1")
这使得饼图。我想要做的就是将它保存到一个文件中。 但是为什么会失败呢?
fig = pie.get_figure()
fig.savefig("~/Desktop/myplot.pdf")
我收到此错误:
'numpy.ndarray' object has no attribute 'get_figure'
【问题讨论】: