from bokeh.plotting import figure, showfrom bokeh.sampledata.penguins import datafrom bokeh.transform import factor_cmap, factor_markSPECIES = sorted(data.species.unique())MARKERS = ['hex', 'circle_x', 'triangle']p = figure(title = "Penguin size", background_fill_color="#fafafa")p.xaxis.axis_label = 'Flipper Length (mm)'p.yaxis.axis_label = 'Body Mass (g)'p.scatter("flipper_length_mm", "body_mas..