bokeh的最新版本(1.0.3)中的高级图表在哪里?

时间:2019-01-04 18:02:58

标签: charts bokeh

我有一个简短的问题:

我看到您在0.11.0版中拥有高级图表: http://bokeh.pydata.org/en/0.11.0/docs/user_guide/charts.html

但是在上一个版本(1.0.3)中找不到相同的主题吗?散景团队将其删除了吗?

我一直在努力使直方图适应我的项目,但是找不到最新版本中的直方图部分?

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

bokeh.charts API已过时,并计划在几年前的1.0版中删除。但是,由于缺乏兴趣和更好的选择,即使是那个时间表也最终得以加速。自2017年底以来,该项目已完全取消该项目。

对于散景之上的高级API,请考虑使用ChartifyHoloviews。或直接使用稳定的bokeh.plotting API创建直方图,例如

from bokeh.plotting import figure, output_file, show
from bokeh.sampledata.autompg import autompg as df
from numpy import histogram

p = figure(plot_height=300)

hist, edges = histogram(df.hp, density=True, bins=20)
p.quad(top=hist, bottom=0, left=edges[:-1], right=edges[1:], line_color="white)

show(p)

enter image description here