高レベルの関数は正常にscatter
動作しますが、プリミティブ グリフを描画しようとすると、プロットが空になります: (ipython ノートブック)
import bokeh
import bokeh.plotting as bplot
bplot.reset_output()
bplot.output_notebook()
bplot.figure(x_range=[0,1],
y_range=[0,1])
bplot.rect(0.5,0.5,0.2,0.2)
bplot.show()
空のプロットを返します:/