I am trying to make an interactive chart with sliders to control date and time So I tried to do this
from ipywidgets import widgets, FloatSlider
import pandas as pd
from matplotlib import pyplot as plt
DateList = ['2013-01-01', '2013-01-02', '2013-01-03']
ts = pd.to_datetime(pd.Series(DateList))
Slider = FloatSlider(min=min(ts), max=max(ts), step=1,
value=pd.Timestamp('2013-01-01'))
but this doesn't work? How can I do this?