gpt4 book ai didi

python - 具有对数 y 轴的 Bokeh 直方图

转载 作者:太空宇宙 更新时间:2023-11-03 14:58:20 25 4
gpt4 key购买 nike

要在 Bokeh 中创建直方图,我可以使用:

p = Histogram(results, yscale="linear", bins=50, title = 'hist plot')
show(p)

但是yscale的选项只有'linear', 'categorical', 'datetime'

关于如何创建具有对数 yscale 的直方图的任何想法?

最佳答案

Histogram 似乎不允许这样做,但您可以尝试这种低级方法(部分基于类似问题的 answer 和文档中的 this example)。

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

p = figure(tools="pan,wheel_zoom,box_zoom,reset,previewsave",
y_axis_type="log", y_range=[10**(-4), 10**0], title="log histogram")

hist, edges = np.histogram(df['mpg'], density=True, bins=50)
p.quad(top=hist, bottom=0, left=edges[:-1], right=edges[1:],
fill_color="#036564", line_color="#033649")

image generated

关于python - 具有对数 y 轴的 Bokeh 直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40699785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com