frombokeh.layoutsimportcolumnfrombokeh.plottingimportfigure,showx=list(range(11))y0=xy1=[10-iforiinx]y2=[abs(i-5)foriinx]# create three plotss1=figure(width=250,height=250,background_fill_color="#fafafa")s1.circle(x,y0,size=12,color="#53777a",alpha=0.8)s2=figure(width=250,height=250,background_fill_color="#fafafa")s2.triangle(x,y1,size=12,color="#c02942",alpha=0.8)s3=figure(width=250,height=250,background_fill_color="#fafafa")s3.square(x,y2,size=12,color="#d95b43",alpha=0.8)# put the results in a column and showshow(column(s1,s2,s3))