matplotlib模塊簡單繪圖

繪圖流程 導入模塊 import matplotlib.pyplot as pyplot import numpy 創建一個畫布 pyplot.figure() 設定X,Y座標 x=numpy.arange(0,1,0.2) y=x**2 繪製折線圖 pyplot.plot(x,y) 展示 pyplot.show() 效果   參數 #字體 pyplot.rcParams['font.sans-s
相關文章
相關標籤/搜索