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]
運行出現錯誤:
#
世界只因有你2017-06-12 09:25:57
使用瞭如下的源碼:
>>> 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進行編寫。由於是中文,會出現無法顯示的問題。