pythonplot()函數(shù)的基本介紹
本文教程操作環(huán)境:windows7系統(tǒng)、Python3.9.1,DELLG3電腦。
1、說明
matplotlib.pyplot是繪制各類可視化圖形的命令子庫,相當(dāng)于快捷方式。
2、語法
plt.plot(x,y,format_string,**kwargs)
x:x軸數(shù)據(jù),列表或數(shù)組,可選。
y:y軸數(shù)據(jù),列表或數(shù)組,可選。
format_string:控制曲線的格式字符串,可選。
kwargs:第二組或者更多(x,y,format_string,**kwargs)
3、實例
importmatplotlib.pyplotasplt
importnumpyasnp
a=np.arange(10)
plt.plot(a,a*1.5,a,a*2.5,a,a*3.5,a,a*4.5)
plt.show()
以上就是pythonplot()函數(shù)的基本介紹,希望能對大家有所幫助。更多Python學(xué)習(xí)教程請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。