gpt4 book ai didi

python matplotlib 图例仅显示列表的第一个条目

转载 作者:太空狗 更新时间:2023-10-30 01:01:40 25 4
gpt4 key购买 nike

我无法让所有图例出现在 matplotlib 中。

我的标签数组是:

lab = ['Google', 'MSFT', 'APPL', 'EXXON', 'WMRT']

我使用下面的代码添加图例:

ax.legend(lab,loc="best")

我在右上角只看到“Google”。如何显示所有标签? enter image description here

完整代码:

import numpy as np
import matplotlib.pyplot as plt
from itertools import cycle, islice

menMeans = (8092, 812, 2221, 1000, 562)
N = len(menMeans)

lab = ['Google', 'MSFT', 'APPL', 'EXXON', 'WMRT']

ind = np.arange(N) # the x locations for the groups
width = 0.35 # the width of the bars

fig, ax = plt.subplots()
my_colors = list(islice(cycle(['b', 'r', 'g', 'y', 'k']), None, N))
rects1 = ax.bar(ind, menMeans, width, color=my_colors,label=lab)

# add some
ax.set_ylabel('Count')
ax.set_title('Trending words and their counts')
ax.set_xticks(ind+width)
ax.legend(lab,loc="best")
plt.show()

最佳答案

@Ffisegydd 的回答可能更有用*,但它没有回答问题。只需为图例创建单独的条形图,您就会得到想要的结果:

for x,y,c,lb in zip(ind,menMeans,my_colors,lab):
ax.bar(x, y, width, color=c,label=lb)

ax.legend()

enter image description here

* 要了解此演示文稿为何有害,请考虑如果观看者是色盲(或黑白打印)会发生什么情况。

关于python matplotlib 图例仅显示列表的第一个条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23317150/

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