使用 fill_between 对由逻辑掩码定义的区域进行阴影处理#

import matplotlib.pyplot as plt
import numpy as np

t = np.arange(0.0, 2, 0.01)
s = np.sin(2*np.pi*t)

fig, ax = plt.subplots()

ax.plot(t, s, color='black')
ax.axhline(0, color='black')

ax.fill_between(t, 1, where=s > 0, facecolor='green', alpha=.5)
ax.fill_between(t, -1, where=s < 0, facecolor='red', alpha=.5)

plt.show()
span regions

参考文献

本示例展示了以下函数、方法、类和模块的使用情况

Sphinx-Gallery 生成的图库