I have a DataFrame with a column named BOD:
0       1958-04-14
1       1954-02-28
2       1955-04-01
3       1955-08-28
4       1955-09-06 
Name: BOD, Length: 10768, dtype: datetime64[ns]
And I need to create a new column ('age') calculating the age of each row. I had some problems with formats and couldnt do it.
