散景图不会绘制矩形字形

时间:2014-09-01 14:43:51

标签: ipython-notebook bokeh

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()

给出一个空图:/

1 个答案:

答案 0 :(得分:1)

试试这个:

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()

来自文档字符串:

x(str或list [float])...

所以,你需要提供一个包含特定点的列表......如果你想绘制几个rects,这非常有用; - )