散景将标签添加到右侧的第二个轴

Bokeh add label to second axis on the right

我正在使用 Bokeh, and I want to display 2 independent sets of data. I have added another y-axis to the right side of my plot 使用以下

创建条形图
bar2.extra_y_ranges = {"Mtons": Range1d(start=0, end=2000)}
bar2.add_layout(LinearAxis(y_range_name="Mtons"), 'right')

如何为第二个轴添加标签?

LinearAxis 有一个参数 axis_label。这可以通过编辑对 LinearAxis 的调用来设置,如下所示:

bar2.add_layout(LinearAxis(y_range_name="Mtons", axis_label="Mt CO2e"), 'right')