I would like to extract a week number from data in a pandas dataframe.
The date format is datetime64[ns]
I have normalized the date to remove the time from it
df['Date'] = df['Date'].apply(pd.datetools.normalize_date)
so the date now looks like - 2015-06-17 in the data frame column
and now I like to convert that to a week number.
Thanks in advance