Miyadaiku では Jupyter Notebook の ipynb ファイルをそのままサイトまたはブログの記事として投稿できます。
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)
このようにJSが必要なnotebookもレンダリングされています。
やり方は非常に簡単で 公式ドキュメント に記載されているとおりです。
Copyright © 2020 driller
Powered by miyadaiku