鼠标单击事件后刷新绘图

时间:2017-05-14 11:03:44

标签: python matplotlib event-handling bar-chart

点击鼠标后,我需要刷新matplotlib条形图。该图应该采用event.ydata值并根据它重新绘制数据。我能够从鼠标事件中检索此值,但是当我尝试刷新绘图时,似乎没有任何事情发生。这是我的代码:

#df is a pd.DataFrame, I have to plot just the df_mean with error bars (marginOfError)
df_mean = df.mean(axis=1)
df_std = df.std(axis=1)
marginOfError = 1.96*df_std/np.sqrt(3650)

index = np.arange(4)

def print_data(threshold):    
    colors = []

    for i,err in zip(df_mean,marginOfError):
        if(i + err < threshold):
            colors.append('#001f7c')
        elif(i - err > threshold):
            colors.append('#bc0917')
        else:
            colors.append('#e0d5d6')

    fig, ax = plt.subplots()

    plt.bar(index, df_mean, 0.85,
                     alpha=0.85,
                     color=colors,
                     yerr=marginOfError)

    plt.xticks(index, df.index)

    #horizontal threshold line
    ax.plot([-0.5, 3.5], [threshold, threshold], "c-")

# first print data with a given threshold value
print_data(df_mean.iloc[1])

def onclick(event):
    plt.gca().set_title('{}'.format(event.ydata))
    print_data(event.ydata)    

plt.gcf().canvas.mpl_connect('button_press_event', onclick)
fig.canvas.draw()

我做错了什么?

1 个答案:

答案 0 :(得分:1)

您可能希望在同一图中绘制每个新图。因此,您应该在重复调用的函数之外创建图形和轴。因此,将fig, ax = plt.subplots()放在函数外部,在绘制新绘图之前,可以清空轴ax.clear()

最后,您需要通过添加

来实际重绘画布
plt.gcf().canvas.draw_idle()

onclick函数的末尾。

相关问题