gpt4 book ai didi

python - 使用 Bokeh 散点函数的对数刻度

转载 作者:太空狗 更新时间:2023-10-29 18:19:16 24 4
gpt4 key购买 nike

在使用 Bokeh 的 scatter 函数时如何获得对数刻度。我正在寻找类似以下内容的内容:

scatter(x, y, source=my_source, ylog=True)

scatter(x, y, source=my_source, yscale='log')

最佳答案

沿着这些路线的东西会起作用:

import numpy as np
from bokeh.plotting import *

N = 100

x = np.linspace(0.1, 5, N)

output_file("logscatter.html", title="log axis scatter example")

figure(tools="pan,wheel_zoom,box_zoom,reset,previewsave",
y_axis_type="log", y_range=[0.1, 10**2], title="log axis scatter example")

scatter(x, np.sqrt(x), line_width=2, line_color="yellow", legend="y=sqrt(x)")

show()

您也可以在 scatter 调用中传递与“log”相关的参数而不是 figure(但我建议您按照我上面显示的那样编写):

scatter(x, np.sqrt(x), y_axis_type="log", y_range=[0.1, 10**2], line_width=2, line_color="yellow", legend="y=sqrt(x)")

希望对您有所帮助! ;-)

关于python - 使用 Bokeh 散点函数的对数刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25025021/

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