Nominal/categorical axis on a scatter plot
问题 How is it possible to generate a nominal/categorical axis (entries like a, b, c instead of 1,2,3 ) on a scatter plot in Bokeh? Imagine that the following data should be plotted: a 0.5 b 10.0 c 5.0 I tried the following: import bokeh.plotting as bk # output to static HTML file bk.output_file("scatter.html", title="scatter plot example") x = ['a', 'b', 'c'] y = [0.5, 10.0, 5.0] p = bk.figure(title = "scatter") p.circle(x = x, y = y) bk.show(p) However, this generates an empty plot. If the x