散景条形图未正确显示

时间:2017-09-24 05:41:05

标签: python bokeh

我试图在Bokeh中构建条形图,我的数据源(df_fac)如下所示:

enter image description here

到目前为止我的代码:

# source
source2 = ColumnDataSource(df_fac)


# Bar chart
bar = figure(plot_width=600, plot_height=600,
            x_axis_label='Faculty', 
            y_axis_label='Number of invoice processed & paid', 
            tools=['save', 'reset'])

bar.vbar(x='FACULTY', bottom=0, top='PAPER', width=50, color='STEELBLUE', source=source2)

reset_output()
show(bar)

但是我的输出如下:

enter image description here

我的Bokeh版本是0.12.7。我试图在Chrome和IE中查看输出而没有运气。提前谢谢。

1 个答案:

答案 0 :(得分:2)

如果您的绘图类别需要在图中引用它(x_range(类别列表,...)