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.circle(x,y0,size=12,alpha=0.8,color="#53777a")s2=figure(background_fill_color="#fafafa")s2.triangle(x,y1,size=12,alpha=0.8,color="#c02942")s3=figure(background_fill_color="#fafafa")s3.square(x,y2,size=12,alpha=0.8,color="#d95b43")# make a gridgrid=gridplot([s1,s2,s3],ncols=2,width=250,height=250)show(grid)