frombokeh.plottingimportfigure,showp=figure(width=400,height=400)p.scatter([1,2,3,4,5],[2,5,8,2,7],size=10)# change just some things about the x-axisp.xaxis.axis_label="Temp"p.xaxis.axis_line_width=3p.xaxis.axis_line_color="red"# change just some things about the y-axisp.yaxis.axis_label="Pressure"p.yaxis.major_label_text_color="orange"p.yaxis.major_label_orientation="vertical"# change things on all axesp.axis.minor_tick_in=-3p.axis.minor_tick_out=6show(p)