python中利用matplotlib模塊畫散點圖

import matplotlib.pyplot as plt plt.plot([1,2,3],[4,5,6],'gv:')# g綠色,v表示實心三角形表示點屬於marker,:點畫線連接屬於line style。 這樣的話,就可以畫一個散點圖,圖中的點分別是(1,4)、(2,5)、(3,6)。 plt.xlim(xmax=2,xmin=0) plt.ylim(ymax=2,ymin=0)#控制
相關文章
相關標籤/搜索