是否可以使用nbconvert将Bokeh图导出为单个html文件?

时间:2014-07-11 23:08:33

标签: ipython-notebook bokeh

我尝试使用nbconvert> HTML和enter image description here它返回随机散景徽标

这是我的代码:

import pandas as pd  
from bokeh.plotting import *  
output_notebook()  

df = pd.DataFrame({'rev':[234,345,657,7]})  
df  

line(df['rev'],df['rev'], color="red", line_width=2,  
     title="Archimean", legend="Archimedean")  
show()

1 个答案:

答案 0 :(得分:2)

一个小的CSS错误使其成为0.5.0,影响nbconvert输出。已经检查到主人的修复程序。我们将在下周初发布0.5.1。