matplotlib 做一个饼状图出错
def plot_graph(): lables = '男生比例','女生比例','其他'
sizes = get_friends_rate()
plt.pie(sizes, lables, autopct='%.3f%%', shadow=False, startangle=90)
plt.axis('equal')
plt.show()
plot_graph()
其中def get_friends_rate()返回
return [float(male)/total 100, float(female)/total 100, float(other)/total * 100]
运行出现错误:
回答:
使用了如下的源码:
>>> from matplotlib import pyplot as plt>>> sizes = 30,20,50
>>> lables = u'男生比例',u'女生比例',u'其他'
>>> plt.pie(sizes, labels=lables,autopct='%.3f%%', shadow=False, startangle=90)
>>> plt.axis('equal')
>>> plt.show()
在这里把标签使用labels参数传入即可,这里使用的是Python2.7进行编写。由于是中文,会出现无法显示的问题。
以上是 matplotlib 做一个饼状图出错 的全部内容, 来源链接: utcz.com/a/164810.html