我有一个简短的问题:
我看到您在0.11.0版中拥有高级图表: http://bokeh.pydata.org/en/0.11.0/docs/user_guide/charts.html
但是在上一个版本(1.0.3)中找不到相同的主题吗?散景团队将其删除了吗?
我一直在努力使直方图适应我的项目,但是找不到最新版本中的直方图部分?
有什么想法吗?
答案 0 :(得分:2)
bokeh.charts
API已过时,并计划在几年前的1.0版中删除。但是,由于缺乏兴趣和更好的选择,即使是那个时间表也最终得以加速。自2017年底以来,该项目已完全取消该项目。
对于散景之上的高级API,请考虑使用Chartify或Holoviews。或直接使用稳定的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)