frombokeh.layoutsimportgridplotfrombokeh.plottingimportfigure,showx=list(range(11))y0=xy1=[10-iforiinx]y2=[abs(i-5)foriinx]# create three plotss1=figure(background_fill_color="#fafafa")s1.scatter(x,y0,size=12,alpha=0.8,color="#53777a")s2=figure(background_fill_color="#fafafa")s2.scatter(x,y1,size=12,marker="triangle",alpha=0.8,color="#c02942")s3=figure(background_fill_color="#fafafa")s3.scatter(x,y2,size=12,marker="square",alpha=0.8,color="#d95b43")# make a gridgrid=gridplot([s1,s2,s3],ncols=2,width=250,height=250)show(grid)