Skip to content

Latest commit

 

History

History
106 lines (54 loc) · 2.3 KB

File metadata and controls

106 lines (54 loc) · 2.3 KB

第23节 matplotlib

❤️💕💕python是一种动态的解释形语言,由于python的普遍性,学会python能更快的解决问题,以及学习其他的知识。Myblog:http://nsddd.top


[TOC]

什么是matplotlib

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

大多数 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()

image-20220922124443773

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()

image-20220922124631855

END 链接