設定 linewidth 參數時,也可使用簡寫 lw 。
範例:
- # -*- coding: utf-8 -*-
- """
- Created on Tue Jan 15 20:52:15 2019
- @author: 軟體罐頭
- """
- import matplotlib.pyplot as plt
- #使用 range 函數產生 1至100 等差為4的數列
- lines=range(1,100,4)
- #使用 plot 函數畫線,x軸為 lines 串列的索引值 0-24 , y軸為 lines的串列值, 設定線的寬度為 5
- plt.plot(lines,linewidth=5)
- #使用 xlim 函數設定x座標軸刻度範圍
- plt.xlim(0,25)
- #使用 ylim 函數設定y座標軸刻度範圍
- plt.ylim(0,100)
- #設定圖形標題
- plt.title("直線圖")
- #設定圖形 x 軸標題
- plt.xlabel("索引值")
- #設定圖形 y 軸標題
- plt.ylabel("元素值")
- #使用 show函數顯示畫好的圖形
- plt.show()
執行結果: 線的寬度設定成 5