gpt4 book ai didi

python - Python Matplotlib stackplot 中的标签区域

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

我想在 matplotlib 堆栈图的区域内生成标签。我会满足于标记一条用于限制该区域的线。考虑这个例子:

import numpy as np
from matplotlib import pyplot as plt

fnx = lambda : np.random.randint(5, 50, 10)
x = np.arange(10)
y1, y2, y3 = fnx(), fnx(), fnx()
areaLabels=['area1','area2','area3']
fig, ax = plt.subplots()
ax.stackplot(x, y1, y2, y3)
plt.show()

这会产生:enter image description here

但我想制作这样的东西:

enter image description here

matplotlib 等高线图具有这种类型的标记功能(尽管在等高线图的情况下线条被标记)。

感谢任何帮助(甚至重定向到我可能错过的帖子)。

最佳答案

啊,启发式。是这样的吗?:

import numpy as np
from matplotlib import pyplot as plt

length = 10
fnx = lambda : np.random.randint(5, 50, length)
x = np.arange(length)
y1, y2, y3 = fnx(), fnx(), fnx()
areaLabels=['area1','area2','area3']
fig, ax = plt.subplots()
ax.stackplot(x, y1, y2, y3)

loc = y1.argmax()
ax.text(loc, y1[loc]*0.25, areaLabels[0])

loc = y2.argmax()
ax.text(loc, y1[loc] + y2[loc]*0.33, areaLabels[1])

loc = y3.argmax()
ax.text(loc, y1[loc] + y2[loc] + y3[loc]*0.75, areaLabels[2])

plt.show()

在测试运行中还可以:

enter image description here

enter image description here

enter image description here

找到最好的 loc 可能更有趣——也许有人想要具有最高平均值的 x_n, x_(n+1)

关于python - Python Matplotlib stackplot 中的标签区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31573869/

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