gpt4 book ai didi

matplotlib - 关闭框架时如何在matplotlib轴中设置facecolor?

转载 作者:行者123 更新时间:2023-12-04 13:49:06 27 4
gpt4 key购买 nike

我找到了几种方法来更改轴中的面颜色,但是一旦我尝试关闭框架,颜色就会消失。

docs建议这应该有效:

import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_axes([0.25,0.25,0.5,0.5], frameon=False, axisbg='g')
plt.show()

frameon=True ,我得到:

enter image description here

但是,与 frameon=False ,我得到:

enter image description here

有没有另一种方法可以在没有框架的情况下获得彩色背景?

最佳答案

我还是不明白是什么frameon应该这样做,但我通过使用得到了我正在寻找的效果:

for side in ['top', 'bottom', 'left', 'right']:
ax.spines[side].set_visible(False)

关于matplotlib - 关闭框架时如何在matplotlib轴中设置facecolor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31129352/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com