从Bokeh Donut对象获取组件

时间:2017-03-03 17:54:28

标签: python bokeh

我写了一个小应用程序,用于可视化一些数据。该应用程序是Flask中的一个小型Web应用程序,我想在响应页面中提供散景组件。类似的东西:

script, div = components(figure)
return render_template('plot.html', div_plot=div, script_plot=script)

这种方法似乎适用于简单的图表或图形,如下图所示,我可以使用图形对象中的属性创建绘图。像

这样的东西
fig = figure(plot_width=900, plot_height=200, tools=tools,x_axis_type='datetime')
fig.line('date', 't1', source=source_static)
script, div = components(fig)

不幸的是,对于Donut对象来说,事情似乎有所不同,你可以像这样创建一个Donut对象

pie_chart = Donut(data)
show(pie_chart)

如何从甜甜圈中获取div和脚本?如何将其嵌入现有的html页面?

1 个答案:

答案 0 :(得分:1)

我最终找到了解决方案。 显然,没有必要通过“数字”对象。相反,人们可以做到

dependencies {
      compile 'com.google.android.gms:play-services-ads:9.0.1'
  }
  // ADD THIS AT THE BOTTOM
  apply plugin: 'com.google.gms.google-services'
傻傻的我。 希望这会对某人有所帮助。