gpt4 book ai didi

python - python Bokeh 中的反向 Axis

转载 作者:太空宇宙 更新时间:2023-11-04 10:07:25 27 4
gpt4 key购买 nike

我正在尝试反转 y Axis 并在 Bokeh 散点图中设置 x 和 y 的范围。我正在使用:

BokehPlot.bokeh_scatter(data=df, x_range=(min_utc, max_utc), y_range=(min_val, max_val))

我得到一个错误:

TypeError: bokeh_scatter() got an unexpected keyword argument 'x_range'

知道如何在带有 pandas 数据帧输入的 Bokeh 散点图中反转 Axis

最佳答案

如果您没有在 Axis 上设置明确的界限,它的范围将为 DataRange1d ,无论您绘制什么,都会自动计算边界。在这种情况下,设置范围的 flipped 属性将翻转它而无需您设置显式边界:

from bokeh.plotting import figure, show
fig = figure()
# Do some plotting calls with fig...
fig.y_range.flipped = True
show(fig)

如果您想设置显式边界,请参阅 this answer on another question .正如 Don Smythe 的回答所提到的,您可以以相反的顺序设置边界以反转任何轴类型。

关于python - python Bokeh 中的反向 Axis ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40317898/

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