如何调整散景轴上的刻度数(标签在小数字上重叠)

how to adjust # of ticks on Bokeh axis (labels are overlapping on small figures)

我有一个由垂直堆叠和对齐的图形组成的多图形散景图。因为我想垂直对齐绘图,所以 y 轴标签旋转为垂直而不是水平。

在某些情况下,Bokeh 会产生过多的刻度,以至于刻度标签完全重叠,难以辨认。这是一个例子:

import bokeh.plotting as bp
import numpy as np

y = np.random.uniform(0, 300, 50)
x = np.arange(len(y))

bp.output_file("/tmp/test.html", "test")
plot = bp.figure(plot_width=800, plot_height=200)
plot.yaxis.axis_label_text_font_size = "12pt"
plot.yaxis.major_label_orientation = 'vertical'

plot.line (x,y)
bp.show(plot)

除了使渲染器足够聪明以自动生成更少的标签外,是否有办法指示要放置在轴上的标签数量?

生成的标签数量似乎与数据的范围有关,就其与 10 的幂的亲和度而言。

看起来仍然没有直接的方法来指定它。请关注相关issue。这是一个解决方法:

from bokeh.models import SingleIntervalTicker, LinearAxis

plot = bp.figure(plot_width=800, plot_height=200, x_axis_type=None)
ticker = SingleIntervalTicker(interval=5, num_minor_ticks=10)
xaxis = LinearAxis(ticker=ticker)
plot.add_layout(xaxis, 'below')

您可以通过SingleIntervalTicker中的interval参数控制票数。

您现在可以使用 desired_num_ticks 属性 控制刻度数。查看 bokeh 文档中的示例(以及此 issue)。

例如,在您的情况下,是这样的:plot.yaxis[0].ticker.desired_num_ticks = 10.