pylab

import pylab as pl #pylab是matplotlib一個子包,很是適合於進行交互式繪圖 x = range(12) #橫軸的數據 y = [i*i for i in x] #縱軸的數據 #調用pylab的plot函數繪製曲線,顯示數據點,而且藍色(blue)繪製圖像 pl.plot(x, y, 'or-',label=u'y=x^2') pl.legend() #讓圖例生
相關文章
相關標籤/搜索