I am running Python in Jupyter Notebook and I have the following codes running fine in the 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)
My issue is that the y-axis is displaying the following values and tick marks:
1000-
-
-
-
-
500-
-
-
-
-
0-
I would like to format that y-axis so that the values show up as follows:
1000
900
800
700
...
0
Can it be done in Bokeh?