matplotlib繪製圖表簡易教程

matplotlib基本圖表包含以下元素: x、y軸 x、y軸刻度 x、y軸刻度標籤 繪圖區域 #encoding=utf-8 import matplotlib.pyplot as plt x = [1,2,3,4] y = [5,4,3,2] fig = plt.figure() #線形 #圖表分爲2*3的網格,並選擇第一個,同sublpot(2,3,1) plt.subplot(231) p
相關文章
相關標籤/搜索