gpt4 book ai didi

matplotlib - 删除 matplotlib 中的图例键

转载 作者:行者123 更新时间:2023-12-05 01:29:15 25 4
gpt4 key购买 nike

我想显示图例文本但没有键(默认显示的矩形框或线条)。

plt.hist(x, label = 'something')

enter image description here

我不想要图例“某物”旁边的框。如何删除它?

最佳答案

首先,您可能决定根本不创建图例,而是在图的一角放置一些标签。

import matplotlib.pyplot as plt
import numpy as np

x = np.random.normal(size=160)
plt.hist(x)

plt.text(0.95,0.95, 'something', ha="right", va="top", transform=plt.gca().transAxes)
plt.show()

enter image description here

如果您已经创建了图例并想删除它,您可以通过

plt.gca().get_legend().remove()

然后添加文本。

如果这不是一个选项,您可以像这样将图例句柄设置为不可见:

import matplotlib.pyplot as plt
import numpy as np

x = np.random.normal(size=160)
plt.hist(x, label = 'something')

plt.legend()

leg = plt.gca().get_legend()
leg.legendHandles[0].set_visible(False)

plt.show()

enter image description here

关于matplotlib - 删除 matplotlib 中的图例键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44603480/

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