Python中Matplotlib库fill_betweenx沿两条曲线之间的水平方向着色

示例代码用fill_betweenx沿两条曲线之间的水平方向着色。

import matplotlib.pyplot as plt
import numpy as np

# 生成数据
y = np.arange(0.0, 2, 0.01)
x1 = np.sin(2 * np.pi * y)
x2 = 1.2 * np.sin(4 * np.pi * y)

# 创建一个包含三个子图的图形,它们共享y轴
fig, [ax1, ax2, ax3] = plt.subplots(1, 3, sharey=True, figsize=(6, 6))

# 子图1:填充区域在x1和0之间
ax1.fill_betweenx(y, 0, x1)
ax1.set_title('between (x1, 0)')

# 子图2:填充区域在x1和1之间
ax2.fill_betweenx(y, x1, 1)
ax2.set_title('between (x1, 1)')
ax2.set_xlabel('x')

# 子图3:填充区域在x1和x2之间
ax3.fill_betweenx(y, x1, x2)
ax3.set_title('between (x1, x2)')

# 显示图形
plt.show()

Python中Matplotlib库fill_betweenx沿两条曲线之间的水平方向着色_第1张图片

  1. 子图1 (ax1): 使用 fill_betweenx 函数填充区域,在x1和0之间。这个区域实际上是曲线 x1 与x轴之间的区域。

  2. 子图2 (ax2): 使用 fill_betweenx 函数填充区域,在x1和1之间。这个区域是曲线 x1 和一条垂直于x轴的直线之间的区域。

  3. 子图3 (ax3): 使用 fill_betweenx 函数填充区域,在x1x2之间。这个区域是两条曲线 x1x2 之间的区域。

每个子图都有一个标题,用来描述填充区域的范围。第二个子图还有一个x轴标签。整个图形被显示出来。

你可能感兴趣的:(Python技巧,python,matplotlib,开发语言)