使用Bokeh在Jupyter笔记本中拥有多个实时图

时间:2016-08-18 13:28:43

标签: jupyter-notebook bokeh

我试图使用Bokeh在Jupyter笔记本中添加几个实时图。我知道我不能使用push_notebook(),因为它只会更新最后一个数字。还有另一种方法可以做到今天吗?

1 个答案:

答案 0 :(得分:2)

如果你没有通过论证,

db.collection("collectionName").findOne({}, function(err, result) { if (result) { var id = result._id.toString(), ctr = 0; var timestamp = parseInt(id.slice(ctr, (ctr+=8)), 16); var machineID = parseInt(id.slice(ctr, (ctr+=6)), 16); var processID = parseInt(id.slice(ctr, (ctr+=4)), 16); var counter = parseInt(id.slice(ctr, (ctr+=6)), 16); console.log(id); console.log(timestamp); console.log(machineID); console.log(processID); console.log(counter); } }); 会通过defatult更新最后一个单元格。但它也接受一个"笔记本手柄" push_notebook在呈现单元格时返回。

show

请参阅GitHub存储库中的Basic Usage示例笔记本。