gpt4 book ai didi

python - 如何阻止 Matplotlib 重复颜色?

转载 作者:行者123 更新时间:2023-12-01 01:27:46 27 4
gpt4 key购买 nike

我有这个代码:

plist = ['p5', 'p14', 'p23', 'p32', 'p41', 'p50', 'p59', 'p68', 'p77', 'p85', 'p95']


for pltcount in range(len(plist)):
plt.plot(data1[pltcount], np.exp(data2)[pltcount], marker='o', label=str(plist[pltcount]))
plt.legend()
plt.show()

这是使用 plt.style.use('fivethirtyeight')让情节变得更好。我找到了手动分配颜色的示例。如果我希望它是自动的并且来自一些众所周知的调色板怎么办?

enter image description here

最佳答案

彩虹的颜色怎么样?这里的关键是使用ax.set_prop_cycle为每条线分配颜色。

NUM_COLORS = len(plist)

cm = plt.get_cmap('gist_rainbow')
fig = plt.figure()
ax = fig.add_subplot(111)
ax.set_prop_cycle('color', [cm(1.*i/NUM_COLORS) for i in range(NUM_COLORS)])
# Or,
# ax.set_prop_cycle(color=[cm(1.*i/NUM_COLORS) for i in range(NUM_COLORS)])
for i, p in enumerate(plist):
ax.plot(data1[i], np.exp(data2)[i], marker='o', label=str(p))

plt.legend()
plt.show()

Borrowed from here 。其他可能的选择。

关于python - 如何阻止 Matplotlib 重复颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53199728/

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