Home » , » [Python學習筆記] Matplotlib 繪圖庫的學習(四):設定線的寬度,學習 plot 之 linewidth 參數

[Python學習筆記] Matplotlib 繪圖庫的學習(四):設定線的寬度,學習 plot 之 linewidth 參數

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

上次畫線時,沒有指定線的寬度,今天就來學習設定線的寬度,在使用 plot 方法時必須使用 linewidth 參數指定線的寬度,範例如下:

設定 linewidth 參數時,也可使用簡寫 lw

範例:
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Tue Jan 15 20:52:15 2019
  4. @author: 軟體罐頭
  5. """
  6. import matplotlib.pyplot as plt
  7. #使用 range 函數產生 1至100 等差為4的數列
  8. lines=range(1,100,4)
  9. #使用 plot 函數畫線,x軸為 lines 串列的索引值 0-24 , y軸為 lines的串列值, 設定線的寬度為 5
  10. plt.plot(lines,linewidth=5)
  11. #使用 xlim 函數設定x座標軸刻度範圍
  12. plt.xlim(0,25)
  13. #使用 ylim 函數設定y座標軸刻度範圍
  14. plt.ylim(0,100)
  15. #設定圖形標題
  16. plt.title("直線圖")
  17. #設定圖形 x 軸標題
  18. plt.xlabel("索引值")
  19. #設定圖形 y 軸標題
  20. plt.ylabel("元素值")
  21. #使用 show函數顯示畫好的圖形
  22. plt.show()


執行結果: 線的寬度設定成 5


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