I have a dataset that has a column named "date_col". date_col has 1000+ dates, and the dates are only: 01/01/2011 and 01/01/2012.
This is what I tried:
table['date_col'] = pd.date_range(start='3/1/2011',
periods=len(table['date_col']), freq='d')
How can I easily change the months to be something else than just 01/01?