python的Matplotlib库入门学习总结
Matplotlib库是python中的功能全面的画图库,其基本用法如下:基本的plot函数用法如下:import matplotlib.pyplot as pltplt.plot(x, y, format_string, **kwargs)#x轴数据,列表或者数组,可选#y轴数据,列表或者数组#format_string 控制曲线格式的字符串,可选#**kwargs ...