登入
首頁
收藏
0
返回課程
5 Matplotlib_ plotting(一)
重點
討論
筆記
發表時間 : 2020-03-25 12:18
觀看次數 : 375
1 matplotlib Line plot
plt.plot(x,y,'r--D',lw=2)
plt.bar(x,y)
plt.title('title')
plt.xlabel('xlabel')
plt.ylabel('ylabel')
plt.show()
2. matplotlib Bar plot
s表示点点的大小,c就是color,marker就是点点的形状 #alpha,点点的亮度,label,标签
plt.scatter(x, y, s=30,c='red',marker='2',alpha=0.9,label='C1')
plt.legend(loc='upper right')
plt.show()
3 matplotlib 3D plot
附件
討論功能僅開放給課程成員,請先加入課程
筆記功能僅開放給課程成員,請先加入課程
/
×