Lets say I have an array of date:
df=pd.DataFrame({'Date': [ '5/4/1985', '6/13/1983', '6/13/1982', '12/28/1987'], 'Name': ['J','K','L','M']})
and I want to find the difference between them and today in years, weeks, or quarters (four in one year).
So far I know I would use pd.datetime.now() to represent today.