Choosing order of bars in Bokeh bar chart
问题 As part of trying to learn to use Bokeh I am trying to make a simple bar chart. I am passing the labels in a certain order (days of the week) and Bokeh seems to be sorting them alphabetically. How can I have the bars show up in the order of the original list? from bokeh.plotting import show from bokeh.io import output_notebook from bokeh.charts import Bar from collections import OrderedDict import calendar output_notebook() data = OrderedDict() data['values'] = [2,3,4,5,6,7,8] #values only