前言
本人初学python,为了提高学习效果,同时也希望能够给和我一样初学习python的小伙伴提供一些参考。这是学习笔记的第二篇。
一、Matplotlib介绍
Matplotlib是Python最著名的绘图库之一,提供了一整套和MATLAB相似的命令API,既适合交互式地进行制图,也可以作为绘图控件方便地嵌入到GUI应用程序中。 Matplotlib的pyplot子库提供了和MATLAB类似的绘图API,方便用户快速绘制2D图表,包括直方图、饼图、散点图等。 Matplotlib配合NumPy模块使用,可以实现科学计算结果的可视化显示。
Matplotlib官网
Matplotlib — Visualization with Pythonhttps://matplotlib.org/Matplotlib相关学习网站
Matplotlib Tutorialhttps://www.w3schools.com/python/matplotlib_intro.aspMatplotlib绘图效果示例库,可以看哪种是自己需要的,然后查看源码再加以修改
Thumbnail gallery — Matplotlib 2.0.2 documentationhttps://matplotlib.org/2.0.2/gallery.html
二、Matplotlib安装
cmd命令行输入
C:\Users\Your Name>pip install matplotlib
三、Matplotlib使用
1.导入Matplotlib
import matplotlib
Matplotlib.pyplot工具包导入(Matplotlib模块绘图,主要使用了Matplotlib.pyplot工具包)
import matplotlib.pyplot as plt
2、Matplot常用函数
plt.plot()函数,如下是相关示例:
示例1:
import matplotlib.pyplot as plt
alist = [12, 34, 56, 78, 90]
plt.plot(alist)
plt.ylabel('values')
plt.show()
结果如下:
可以看到:plt.plot()只有一个输入列表或数组时,参数被当作Y轴,X轴以索引自动生成。
示例2:绘制y=sin(x)的函数曲线
import matplotlib.pyplot as plt
import math
x = [2*math.pi*i/100 for i in range(100)]
y = [math.sin(i) for i in x]
plt.plot(x, y)
plt.savefig('sinfig', dpi=600)
结果如下:
plt.plot(x,y)当有两个以上参数时,按照X轴和Y轴顺序绘制数据点。
示例3:绘制多条曲线
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(10)
plt.plot(x, x*1.5, x, x*2.5, x, x*3.5)
plt.show()
结果如下
其他常用函数都可以在介绍部分的学习网站学习。