I have the following data frame
data_df =
date value
2016-01-15 1555
2016-01-16 1678
2016-01-17 1789
...
I would like to create a timeline graph, with the date as the x axis
I import the visualization modules
import matplotlib.pyplot as plt
%matplotlib inline
import vincent as vin
import seaborn as sb
I try to add a column to format the date data_df['dates'] = plt.date2num(ad_data.date)
Then I want to plot the timeline plot_date(data_df.dates, data_df.shown)
This doesn't work, since I am not converting the date correctly.
