使用matplotlib,如何在函数和y轴之间填充而不是x?
在函数和x轴之间填充的正常方法是:
ax.fill_between(x, y, interpolate=True, color='red')
我打算正常拍摄,然后旋转90度,但这看起来也很棘手。
答案 0 :(得分:4)
如果我理解你的问题,我认为你正在寻找fill_betweenx
:
ax.fill_betweenx(x, y, color='red')
请注意,此方法不接受interpolte
参数。
还有更多示例here。