numpy
リストをarrayにする
numpy.array(list)
指定した数のarrayを生成する。rangeはlistを生成
numpy.arrange(start,end,bin)
matplotlib
plt.plot(x,y) #図を描写 plt.plot([x1,x2,x3],[y1,y2,y3], "ro-") #赤丸三点を結ぶ線を描写 plt.legend(('legend',)) #凡例"legend"をつける plt.text(x,y,text),keyword) #x,yの位置にtextを書き込む plt.savefig('filename.png', dpi=150) #出力をfilename.pngという名前でdpi=150で描写 plt.show() #出力