matplotlib plt.plot
生活随笔
收集整理的這篇文章主要介紹了
matplotlib plt.plot
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
實例1
import matplotlib.pyplot as plta = [1, 2, 3, 4] # y 是 a的值,x是各個元素的索引 b = [5, 6, 7, 8]plt.figure('demon plot') plt.plot(a, b, 'r--', label = 'aa') plt.xlabel('this is x') plt.ylabel('this is y') plt.title('this is a demo') plt.legend(loc='upper left') # 將樣例顯示出來plt.show()運行結果
?
實例2
import numpy as np import matplotlib.pyplot as plt# 定義x,y X = np.linspace(0, 2*np.pi, 32, endpoint=True) C = np.cos(X)# figure的名稱 plt.figure('demon plot') # 畫圖 plt.plot(X, C, 'r--', label = 'cos')# 顯示x、y坐標代表的含義 plt.xlabel('this is x') plt.ylabel('this is y')# 顯示圖的標題 plt.title('this is a demo')# 顯示圖例 plt.legend(loc='lower right')plt.show()運行結果
?
總結
以上是生活随笔為你收集整理的matplotlib plt.plot的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matplotlib plt.subpl
- 下一篇: matplotlib plt.scat