matplotlib繪圖教程

import numpy as np import matplotlib.pyplot as plt np.random.seed(2) y = np.random.random(10) z = np.random.random(10) x = range(len(y)) plt.grid() # 網格 plt.plot(y, c='g', linewidth=1.5, label='plo
相關文章
相關標籤/搜索