我试图在Bokeh中构建条形图,我的数据源(df_fac)如下所示:
到目前为止我的代码:
# 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)
但是我的输出如下:
我的Bokeh版本是0.12.7。我试图在Chrome和IE中查看输出而没有运气。提前谢谢。
答案 0 :(得分:2)
如果您的绘图类别需要在图中引用它(x_range(类别列表,...)