Is there a way to have Bokeh plot data that has gaps in it? See the below screenshot from a Excel plot for an example. I tried using None values, but it just plotted zero values.
x_data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y_data = [4, 1, 2, 3, , , , 4, 4, 5]