gpt4 book ai didi

python - 如何使用 matplotlib 实时绘制条形图

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

我有一个连续的数据流,基本上是直方图的 bin。如果使用如下内容,我可以实时绘制 a:

import pylab as plt 
from matplotlib.pyplot import figure, show
import numpy as np

plt.ion()
X = np.linspace(0,4095,16)
Y = np.linspace(0,10000,16)
f, axarr = plt.subplots(4, sharex=True)
graph_low, = axarr[0].plot(X,Y,label='SomeLabel')
graph_low.set_ydata(Z)

但这只绘制了一个线图。

问题是我找不到类似于 set_ydata 的条形图。

最佳答案

这是否适合您?

ax = plt.bar(left, height)
ax.patches[i].set_height(x)

其中 i 是特定柱的索引,x 是所需的高度。

关于python - 如何使用 matplotlib 实时绘制条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29636723/

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