gpt4 book ai didi

python - 在子图中绘制平均线

转载 作者:太空宇宙 更新时间:2023-11-04 02:08:06 25 4
gpt4 key购买 nike

我想在我的条形图子图中画一条平均线。我只用六个数据集来简化我的案例。对于这些值,我创建了平均值,这很容易(为了简短起见,此处未在我的示例中显示)。

但我找不到在我的条形图中集成一条线的方法,该线显示每个条的平均值。

import tkinter as Tk
import numpy as np

from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure

root = Tk.Tk()

f = Figure(figsize=(5,4), dpi=100)
ax = f.add_subplot(111)

high = (104, 109, 113, 111, 108, 114)
low = (95, 100, 109, 103, 103, 110)

ind = np.arange(6) # the x locations for the groups
width = 0.35

rects1 = ax.bar(ind, high, width)
rects2 = ax.bar(ind, low, width)

ax.set_yticks(np.arange(90, 121, 2))
ax.set_ylim(bottom=90)

ax.legend((rects1[0], rects2[0]), ('High', 'Low'))

canvas = FigureCanvasTkAgg(f, master=root)
canvas.show()
canvas.get_tk_widget().pack(side=Tk.TOP, fill=Tk.BOTH, expand=1)

Tk.mainloop()

最佳答案

您可以使用列表推导式首先计算每组低柱和高柱的平均值。然后你可以使用虚线绘制它,例如如下所示


average = [(h+l)/2. for h, l in zip(high, low)]

rects1 = ax.bar(ind, high, width)
rects2 = ax.bar(ind, low, width)
ax.plot(ind, average, '--k')

enter image description here

关于python - 在子图中绘制平均线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54198951/

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