I have a date array
date_array = array(['September 11, 2012', 'September 5, 2012'])
I want to graph this date_array against a
value, value_array =array([25,28])
using matplotlib
So I want to convert the date_array to a number like
date_as_number=array([20120812, 20120805])
so that I could plot the date_as_number
as any other number against the value_array
.