我在 Jupyter Notebook 中运行 Python,并且以下代码在 Notebook 中运行良好:
from bokeh.charts import BoxPlot, show
from bokeh.io import output_notebook
output_notebook ()
df = myfile2
p = BoxPlot(df, values='Total Spending', label=['Market'],color='Market', marker='square',
whisker_color='black',legend=False, plot_width=800, plot_height=600,
title="Total Spending, February 2017)")
p.xaxis.major_label_orientation = "horizontal"
show(p)
我的问题是 y 轴显示以下值和刻度线:
1000-
-
-
-
-
500-
-
-
-
-
0-
我想格式化该 y 轴,以便值显示如下:
1000
900
800
700
...
0
可以在 Bokeh 中完成吗?