散景流动空白图

问题描述 投票:0回答:1

我正在尝试使用Bokeh绘制实时线图。但我的代码只是绘制了一个空白的数字。

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


source = ColumnDataSource({'x': [], 'y': []})

def update():
    new = {'x':[np.random.rand(1,3)],
           'y':[np.random.rand(1,3)]}
    source.stream(new)

p = figure(plot_width=800,
           plot_height=400,
           x_range=[0, 1],
           y_range=[0, 1],
           x_axis_label = 'x',
           y_axis_label = 'y',
)
p.line(source=source, x='x', y='y')

curdoc().add_root(p)
curdoc().add_periodic_callback(update, 100)
python plot tornado bokeh
1个回答
0
投票

这是np.random.rand(1,3)的一个实例:

array([[0.60098985, 0.33777435, 0.92713769]])

它是一个元素的数组,它本身就是一个包含3个元素的数组,因此源中'x'和'y'的每个元素都是一个包含3个元素的数组。这就是为什么没有出现的原因。

你可以使用numpy.ndarray.flatten

def update():
    new = {'x':np.random.rand(1,3).flatten(),
           'y':np.random.rand(1,3).flatten()}
    source.stream(new)

或者只是np.random.rand(3)

© www.soinside.com 2019 - 2024. All rights reserved.