matplotlib4 詳解 複雜圖形

lesson17兩根座標軸 x= np.arange(2,20,1) y1 = x*x y2 = np.log(x) plt.plot(x,y1) plt.twinx() plt.plot(x,y2,color ='r') plt.show() 面向對象的做法 x= np.arange(2,20,1) y1 = x*x y2 = np.log(x) fig = plt.figure() ax1=
相關文章
相關標籤/搜索