标签: python data-visualization bokeh
我创建了一个散景图。但y轴的股票代码显示的是10的幂。如图
如何将其更改为20000,40000,60000,80000等值。
答案 0 :(得分:1)
关闭use_scientific:
use_scientific
fig = figure() x = np.linspace(0, 100) fig.line(x, x**4) yaxis = fig.yaxis[0] yaxis.formatter.use_scientific = False show(fig)