Jupyter Notebookサンプル

Miyadaiku では Jupyter Notebook の ipynb ファイルをそのままサイトまたはブログの記事として投稿できます。

In [1]:
from bokeh.plotting import figure, output_notebook, show

output_notebook()
p = figure(plot_width=200, plot_height=200)
p.line([1, 2, 3], [3, 2, 1])
show(p)
Loading BokehJS ...

このようにJSが必要なnotebookもレンダリングされています。

やり方は非常に簡単で 公式ドキュメント に記載されているとおりです。