Home » , » [Python學習筆記] Matplotlib 繪圖庫的學習(五):使用 plot 方法繪製多組數據,並設定圖例(legend)使用 label 參數及 legend 函數

[Python學習筆記] Matplotlib 繪圖庫的學習(五):使用 plot 方法繪製多組數據,並設定圖例(legend)使用 label 參數及 legend 函數

作者:軟體罐頭 | 發表日期:2019年1月16日 星期三

前面的例子是畫一條直線,今天要畫三條直線,但是畫視直線後每一條直條代表的什麼就會讓看的人不了解,這時就要使用圖例來解說每一條直線代表誰,現在就用學習 legend 函數最基本的使用方法,範例如下:

範例:
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Wed Jan 16 22:17:24 2019
  4. @author: 軟體罐頭
  5. """
  6. import matplotlib.pyplot as plt
  7. line1 range(0,100,4)
  8. line2 range(0,100,2)
  9. line3 range(0,100,3)
  10. #使用 plot 函數畫線, 設定線的寬度為 2,並設定圖例名稱(label)
  11. plt.plot(line1,linewidth=2,label="line1")
  12. plt.plot(line2,linewidth=2,label="line2")
  13. plt.plot(line3,linewidth=2,label="line3")
  14. #呼叫 legend 函數產生圖例
  15. plt.legend()
  16. #使用 xlim 函數設定x座標軸刻度範圍,只設定最小值
  17. plt.xlim(0,)
  18. #使用 ylim 函數設定y座標軸刻度範圍,只設定最小值
  19. plt.ylim(0,)
  20. #設定圖形標題
  21. plt.title("直線圖")
  22. #設定圖形 x 軸標題
  23. plt.xlabel("索引值")
  24. #設定圖形 y 軸標題
  25. plt.ylabel("元素值")
  26. #使用 show函數顯示畫好的圖形
  27. plt.show()

程式說明:

15-17行:使用 label 參數設定圖例名稱
20行:使用 legend 函數產生圖例
23行、26行:使用 xlim、ylim 只設定原點座標(0,0)

執行結果:


分享 :
 
Copyright © 2013. 軟體罐頭 - All Rights Reserved
Blogger | Creating Website | Johny Template | Mas Template 技術提供