The dates in my dataset are inconsistent. Is there any way to make them in a particular format like YY/DD/MM? All these dates are of the month of January and are continuous but date and month flipped from the 7th row.
0 2016-04-01
1 2016-05-01
2 2016-06-01
3 2016-07-01
4 2016-08-01
5 2016-11-01
6 2016-12-01
7 2016-01-13
8 2016-01-14
9 2016-01-15
10 2016-01-18
11 2016-01-19
CSV Data looks something like this. Date in this file is an object not in actual date format. enter image description here
Expected output should look something like this:
0 2016-04-01
1 2016-05-01
2 2016-06-01
3 2016-07-01
4 2016-08-01
5 2016-11-01
6 2016-12-01
7 2016-13-01
8 2016-14-01
9 2016-15-01
10 2016-18-01
11 2016-19-01
All the dates are in YY/DD/MM format