使用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

参考

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

标签: 样式:条件 绘图样式:fill_between 级别:初学者

由 Sphinx-Gallery 生成的画廊