How do you convert a pandas dataframe column from a date formatted as below to a number as shown below:
        date 
0 4/5/2010     
1 9/26/2014     
2 8/3/2010     
To this
        date newFormat
0 4/5/2010     40273
1 9/26/2014    41908
2 8/3/2010     40393
Where the second columns is the number of days since 1/1/1900.