散景对数轴格式为十进制

时间:2019-03-11 18:12:16

标签: python python-3.x bokeh

例如,我想使用带有对数轴的Bokeh在python中绘制一个轴,但是标签采用科学计数法(10 ^ 2),而我希望采用整数计数法(100)。示例代码和下面的输出。

import numpy as np

from bokeh.plotting import figure, show, output_file

x = np.linspace(0.1, 5, 80)
p = figure(title="log axis example", y_axis_type="log",
       x_range=(0, 5), y_range=(0.001, 10**22),
       background_fill_color="#fafafa")
p.line(x, x**2, legend="y=x**2")

show(p)

enter image description here

感谢您的帮助。

0 个答案:

没有答案