gpt4 book ai didi

python - 具有 3 个 y 轴的 Bokeh 服务器无法绘制,但具有 2 个 y 轴。为什么?

转载 作者:行者123 更新时间:2023-11-30 22:22:04 26 4
gpt4 key购买 nike

我的目标是在多个 y 轴(不同范围)上绘制实时数据。以下代码适用于 2 y 轴,但当我添加第三个时,浏览器只是空白。早期带有 4 y 轴的基本 Bokeh 图工作正常,但此服务器版本无法正常工作。我不知道我犯了什么错误,请指导我。

以下代码绘制 2 个临时点,然后绘制第 3 个永久点。使用 ColumnDataSource 中的“patch”和“stream”来实现此目的。

from bokeh.io import curdoc
from bokeh.models import ColumnDataSource
from bokeh.plotting import figure
from bokeh.models import LinearAxis, Range1d
import numpy as np

def plotcharts(source,x,a,b,c):
fig=figure(y_range=(0, 500))
fig.circle(source=source, x=x,y=a,size=12,color='red')

fig.extra_y_ranges = {"foo1": Range1d(start=0, end=50)}
fig.circle(source=source,x=x, y=b, size=12, color="blue",
y_range_name="foo1")
fig.add_layout(LinearAxis(y_range_name="foo1"), 'left')

# configure 3rd axis
fig.extra_y_ranges = {"foo2": Range1d(start=0, end=25)}
fig.circle(source=source, x=x, y=c, color="magenta",
y_range_name="foo2")
fig.add_layout(LinearAxis(y_range_name="foo2"), 'right')

return fig

count=(-1)
dct=dict(x=[],a=[],b=[],c=[])
#Just a and b work fine but when 3rd axis c was added it doesnt !
source=ColumnDataSource(dct)
fig=plotcharts(source,'x','a','b','c') #c==3rd axis

def update_data():
global count
count=count+1
y1 = np.random.randint(low=0, high=500)
y2 = np.random.randint(low=0, high=50)
y3 = np.random.randint(low=0, high=25) #y3==3rd axis

if count%3==0:
new_data = {
'x': [count/3],
'a': [y1],
'b': [y2],
'c': [y3] #c==3rd axis
}
source.stream(new_data,rollover=20)

else:
l = len(df['a'])
new_data = {
'a': [(l - 1,y1)],
'b': [(l - 1, y2)],
'c': [(l - 1, y3)] #c==3rd axis
}
source.patch(new_data)

curdoc().add_root(fig)
curdoc().add_periodic_callback(update_data,1000)

最佳答案

您的代码中有这两行:

fig.extra_y_ranges = {"foo1": Range1d(start=0, end=50)}
[...]
fig.extra_y_ranges = {"foo2": Range1d(start=0, end=25)}

Bokeh 不会尝试在设置这些字段时执行一些特殊的操作,因此使用后一个语句,您只需覆盖前一个语句即可。相反,您应该只写一行:

fig.extra_y_ranges = {"foo1": Range1d(start=0, end=50), "foo2": Range1d(start=0, end=25)}

关于python - 具有 3 个 y 轴的 Bokeh 服务器无法绘制,但具有 2 个 y 轴。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48441861/

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