使用Matplotlib在 Python 中填充曲线和 X 轴之间的区域
为了在 Python 中使用 Matplotlib 填充曲线和 X 轴之间的区域,我们可以按照以下步骤进行操作。
步骤
- 设置图形大小以及子图之间和周围的填充。
-
使用 numpy 创建 x 和 y 数据点。
-
使用 plot() 方法绘制 x 和 y 数据点。
-
使用 fill_between() 方法填充曲线和 X 轴之间的区域。
-
使用 show() 方法显示图形。
示例
import matplotlib.pyplot as plt
import numpy as np
# 设置图形大小
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
# 创建 x 和 y 数据点
x = np.linspace(-5, 5, 100)
y = np.sin(x)
# 绘制 x 和 y 数据点
plt.plot(x, y)
# 填充区域
plt.fill_between(x, 0, y, color='orange')
# 显示图形
plt.show()
输出
它将产生以下输出 –