I have a csv file containing 2 columns: id, val where id is the number of the day (total 365) Is it possible to convert the number id to dates in format '%d-%m-%Y'? In fact I want to add all the days of year 2015 e.g. 01-01-2015 etc. How can i do this with pandas in python?
following is a part of the file and the desired output
"id" "val"
1 49
2 48
3 46
4 45
"date" "val"
01-01-2015 49
02-01-2015 48
03-01-2015 46
04-01-2015 45