Bokeh FixedTicker with Custom Datetime/Timestamp values
Objective: I want to have tick marks on the x axis only on 2017/10/2 and 2017/10/5. One constraint is that my times are not guaranteed to be evenly separated, so converting to a string and doing a categorical axis is not possible. They need to be numeric/datetime. Problem: I'm unsure how to properly format the desired dates so they are rendered properly by Bokeh. I've tried dividing by 10 ** 9 and such to convert to milliseconds. This has not worked. Sample Code: from bokeh.plotting import figure, show from bokeh.models import FixedTicker import pandas as pd import numpy as np y = list(range(3