1
我試圖在博科0.12.0一個圓圈情節在jupyter筆記本這樣的:圈情節上不顯示
s5 = figure(toolbar_location="above", x_axis_type = 'datetime')
s5.circle([1467568091,1467568152,1467568213],[1,1,1])
s5.xaxis.formatter = DatetimeTickFormatter(formats = dict(
seconds=["%d %m %Y %H %M %S"],
minutes=["%d %m %Y %H %M %S"],
hours=["%d %m %Y %H %M %S"],
days=["%d %m %Y %H %M %S"],
months=["%d %m %Y %H %M %S"],
years=["%d %m %Y %H %M %S"],
)
)
s5.xaxis.major_label_orientation = np.pi/4
show(s5)
但是其不顯示任何內容,我得到一個JavaScript錯誤:
TypeError: j is undefined
inline_js</Bokeh</<["models/formatters/datetime_tick_formatter"]</o</e.prototype.doFormat()
main.min.js:60
inline_js</Bokeh</<["models/axes/axis"]</o</e.prototype._tick_label_extent()
main.min.js:59
inline_js</Bokeh</<["models/axes/axis"]</o</e.prototype._get_size()
main.min.js:59
inline_js</Bokeh</<["core/layout/side_panel"]</T()
main.min.js:56
inline_js</Bokeh</<["models/plots/plot_canvas"]</_</e.prototype.update_constraints()
main.min.js:66
inline_js</Bokeh</<["models/plots/plot_canvas"]</_</e.prototype.render()
main.min.js:66
inline_js</Bokeh</<["core/util/throttle"]</i/i()
main.min.js:57
這是怎麼回事?