我在jupyter笔记本上有代码:
from bokeh.plotting import figure
from bokeh.io import output_file, show
x = [1,2,3,4,5]
y = [6,7,8,9,10]
output_file("Line.htlm")
f = figure()
f.line(x,y)
show(f)
未发生任何错误,但我在chorme上收到此消息: enter image description here
但是当使用firefox尝试html结果文件时,它起作用了: enter image description here
有人可以教我如何解决一个Chrome问题
答案 0 :(得分:0)
这是Bokeh HTML输出。但是您将您的输出文件命名为 .ht lm 而不是 .html ,因此chrome刚刚将输出打开为纯文本格式。另外,如果您希望在笔记本本身中看到内联输出,而不是使用新标签,请使用output_notebook
。