Python 数据科学 - Matplotlib



什么是 Matplotlib?

Matplotlib 是一个 Python 库,用于使用 Python 脚本创建 2D 图表和绘图。它有一个名为 pyplot 的模块,通过提供控制线型、字体属性、格式化轴等功能,使绘图变得更容易。它支持各种各样的图表和绘图,例如直方图、条形图、功率谱、误差图等。它与 NumPy 一起使用,提供了一个有效开源的 MatLab 替代环境。它还可以与 PyQt 和 wxPython 等图形工具包一起使用。

通常,通过添加以下语句将包导入 Python 脚本中:

from matplotlib import pyplot as plt

Matplotlib 示例

以下脚本使用 matplotlib 生成**正弦波图**。

示例

import numpy as np 
import matplotlib.pyplot as plt  

# Compute the x and y coordinates for points on a sine curve 
x = np.arange(0, 3 * np.pi, 0.1) 
y = np.sin(x) 
plt.title("sine wave form") 

# Plot the points using matplotlib 
plt.plot(x, y) 
plt.show() 

其**输出**如下:

Sine Wave

在接下来的章节中,我们将看到许多关于在数据科学工作中使用 Python 的 Matplotlib 库的示例。

广告