在Jupyter笔记本的朱莉娅PyCall Bokeh

时间:2016-12-19 04:03:25

标签: python julia jupyter-notebook bokeh

使用Julia的PyCall调用在Jupyter笔记本中运行的Python的散景:

using PyCall

@pyimport numpy as np
@pyimport bokeh.plotting as plotting
@pyimport bokeh.io as io

io.output_notebook()

x = np.linspace(0, 4*np.pi, 100)
y = np.sin(x)

TOOLS = "pan,wheel_zoom,box_zoom,reset,box_select"

p1 = plotting.figure(title="Legend Example", tools=TOOLS)
p1[:circle](x,   y, legend="sin(x)")

io.show(p1)

而不是像Bokeh examples那样得到一个情节:

Out[1]: <Bokeh Notebook handle>
  • 在Python 2/3笔记本中正常工作。
  • 使用Docker/datascience-notebook基本图片。

0 个答案:

没有答案