❤️💕💕
python
是一种动态的解释形语言,由于python
的普遍性,学会python
能更快的解决问题,以及学习其他的知识。Myblog:http://nsddd.top
[TOC]
Matplotlib 是 Python 中的一个低级图形绘制库,用作可视化实用程序。
Matplotlib 由 John D. Hunter 创建。
Matplotlib 是开源的,我们可以自由使用。
Matplotlib 主要是用 python 编写的,少数部分是用 C、Objective-C 和 Javascript 编写的,以实现平台兼容性。
Matplotlib 的源代码位于此 github 存储库https://github.com/matplotlib/matplotlib
安装:
pip install matplotlib
导入:
import matplotlib
大多数 Matplotlib 实用程序位于pyplot
子模块下,通常以plt
别名导入:
import matplotlib.pyplot as plt
现在 Pyplot 包可以称为
plt
.
在图表中从位置 (0,0) 到位置 (6,250) 画一条线:
In [4]: import matplotlib.pyplot as plt
...: import numpy as np
...:
...: xpoints = np.array([0, 6])
...: ypoints = np.array([0, 250])
...:
...: plt.plot(xpoints, ypoints)
...: plt.show()
In [4]: import matplotlib.pyplot as plt
...: import numpy as np
...:
...: xpoints = np.array([0, 6])
...: ypoints = np.array([0, 250])
...:
...: plt.plot(xpoints, ypoints,'o')
...: plt.show()
-
✴️版权声明 © :本书所有内容遵循CC-BY-SA 3.0协议(署名-相同方式共享)©