Python3入門機器學習 - 數據可視化基礎matplotlib

先上張圖 折線圖 plt.plot(x,siny,label="sin(x)") plt.plot(x,cosy,color="red",linestyle="--",label="cos(x)") plt.axis([-2,12,-2,2]) //設置橫縱座標範圍,也可以使用 plt.xlim(-2,12) plt.ylim(-2,2)來設置 plt.xlabel("x axis") plt.y
相關文章
相關標籤/搜索