title 的語法如下:設定標題顯示內容
title(字串)
xlabel 的語法如下:設定 x 軸標題顯示內容
xlabel(字串)
ylabel 的語法如下:設定 y 軸標題顯示內容
ylabel(字串)
範例:
- # -*- coding: utf-8 -*-
- """
- Created on Tue Jan 15 21:22:57 2019
- @author: 軟體罐頭
- """
- import matplotlib.pyplot as plt
- #使用 range 函數產生 1至100 等差為4的數列
- lines=range(1,100,4)
- #使用 plot 函數畫線,x軸為 lines 串列的索引值 0-24 , y軸為 lines的串列值
- plt.plot(lines)
- #使用 xlim 函數設定x座標軸刻度範圍
- plt.xlim(0,25)
- #使用 ylim 函數設定y座標軸刻度範圍
- plt.ylim(0,100)
- #設定圖形標題
- plt.title("直線圖")
- #設定圖形 x 軸標題
- plt.xlabel("索引值")
- #設定圖形 y 軸標題
- plt.ylabel("元素值")
- #使用 show函數顯示畫好的圖形
- plt.show()
執行結果: