Bokeh中的多个图

时间:2017-06-26 22:41:12

标签: python bokeh

我有一个带有textinput和按钮的简单散景布局。单击按钮时,根据textinput.value,需要创建两个图。

Plot 1是networkx Digraph,Plot 2是价格的时间序列。这是我试过的:

ask_input = TextInput(placeholder="Search", width = 500, height=100)
ask_button = Button(label="GET", width = 100, height=50)
ask_button.on_click(addPlots)

layout = layout([[widgetbox(ask_input, ask_button)]])
curdoc().add_root(layout)

def addPlots():    
     p1=buildGraph()
     p2=buildPlot()
     layout.children[-1].children.append(row([p1],[p2]))

def buildGraph():
     for i in range(len(graph_matrix)):
            client_graph.add_edge(green_nodes[i], orange_nodes[i], weight=weights[i])

    node_size=5000
    pos=nx.spring_layout(client_graph)    

    node_colors = ['green' if node in green_nodes.unique() else 'orange'
           for node in client_graph.nodes()]
    nx.draw_networkx_edges(client_graph, pos, arrows=True)

    nx.draw_networkx_nodes(client_graph, pos,with_labels=True, arrows = True, node_size=node_size, node_color=node_colors)
    nx.draw_networkx_labels(client_graph, pos, font_size=15,font_family='CONSOLAS', with_labels=True, arrows=True)
    #this is where there maybe a disconnect between the graph and the plot
    fig = figure(title='Connections')
    return fig

def buildPlot():
    fig2=stock_df.plot('adj_close',data=stock_df) #against a DateTimeIndex
    return fig2

错误是无法将LayoutDOM对象插入到行中。我肯定没有将图表/情节添加到右图。可以将networkx图添加到图中吗?

1 个答案:

答案 0 :(得分:1)

简短的回答是“不”。或者至少,不是你尝试的方式。散景布局只能包含其他散景对象,例如作为Bokeh库一部分的图,gmap图,数据表和小部件。 Bokeh对networkx输出一无所知。这不是Bokeh可以直接放在其自己的布局中的东西。截至Bokeh 0.12.6,您有几个选择:

如果没有更多你想要做的事情的更大背景,那就更具体,或者说哪种方法可能会更好。

请注意,对于0.12.7,可以更好地支持直接传递图表/网络数据,请参阅此公开PR:

https://github.com/bokeh/bokeh/pull/6544