散景不显示情节

露西德废话

我正在设计一个散景图的模板,该模板会定期更新以在要读取的文件中显示新数据。

目前,我只是使用一个简单的生成器,该生成器将制作numpy数组只是为了测试该应用程序。

但是,当我执行时,浏览器中没有任何显示bokeh serve --show test.py我不确定如何继续,因为没有错误。我尝试使用print语句进行调试表明,该回调甚至无法正常工作。

每次更新时,此特定测试应在同一图形上制作多个直方图。

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

def histplot_updater(sources, data_stream):
    def updater():
        data = data_stream.next()
        print 'got data'
        for i in range(data.shape[1]):
            d = data[:, i]
            mind = np.min(d)
            maxd = np.max(d)
            step = max((maxd - mind) // 100, 1)
            hist, edges = np.histogram(d, density=True, bins=range(mind, maxd + 2, step))
            new_data = {'top': hist, 'left': edges[:-1], 'right': edges[1:]}
            sources[i].data = new_data
    return updater

def init_histplot(f, data, **kwargs):
    hs = []
    ss = []
    for i in range(data.shape[1]):
        source = ColumnDataSource(dict(top=[], left=[], right=[]))
        kwgs = {k: v[i] for k,v in kwargs.items()}
        h = f.quad(top='top', bottom=0, left='left', right='right', source=source, **kwgs)
        hs.append(h)
        ss.append(source)
    return hs, ss

if __name__ == '__main__':
    fig = figure()
    Data = (np.random.normal([0, 1], [1, 2],  (1000, 2)) for i in xrange(100))

    h_sources = init_histplot(fig, Data)[1]
    curdoc().add_root(fig)
    curdoc().add_periodic_callback(histplot_updater(h_sources), 1000)

有任何想法吗?

伯尼

经过测试,除非删除以下代码,否则所有代码都不会执行:

if __name__ == '__main__':

我猜测bokeh的运行方式与标准程序不同。如果删除该内容,则会开始出现错误,即

Error running application handler <bokeh.application.handlers.script.ScriptHandler object at 0x7fed2cc1a590>: 'generator' object has no attribute 'shape'

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章