柱狀圖
阿新 • • 發佈:2018-01-20
出口 otto .sh legend add text .text jupyter tro
問題1:
for m, n in zip(x1, y1):
plt.text(m + 0.08, n + 20, ‘%.2f‘ % n, ha=‘center‘, va=‘bottom‘)
for m, n in zip(x2, y2):
plt.text(m - 0.08, n + 10, ‘%.2f‘ % n, ha=‘center‘, va=‘bottom‘)
問題2:
如果是三個圖怎麽辦
0.5:柱狀圖的寬度
align:對齊方式
x1=[1,2,3] x2=[1,2,3] y1=[600,700,800] y2=[500,900,1000] plt.figure() plt.bar(x1,y1,0.1,color=‘y‘,align=‘edge‘,label=‘進口 單位/美元‘) plt.bar(x2,y2,-0.1,color=‘r‘,align=‘edge‘,label=‘出口 單位/美元‘) for m, n in zip(x1, y1): plt.text(m + 0.08, n + 20, ‘%.2f‘ % n, ha=‘center‘, va=‘bottom‘) for m, n in zip(x2, y2): plt.text(m - 0.08, n + 10, ‘%.2f‘ % n, ha=‘center‘, va=‘bottom‘) plt.xlabel(‘第一季度/月‘) plt.ylabel(‘進出口額/美元‘) plt.title(‘第一季度進出口數據‘) plt.xticks(range(1,4),[str(i)+‘月‘ for i in range(1,4)]) plt.legend() plt.show()
adding
1.按到Insert會出現想命令行一樣的輸入形式
2.打開ipynb文件,將文件移到jupyter下就可以打開了
柱狀圖