Now I have csv file
date
201605
201606
201607
201608
I wanna get dataframe like this
df
date
0 2016-05-01
1 2016-06-01
2 2016-07-01
3 2016-08-01
so,I would like to read csvfile as datetime64. and add the date 1. How can I read and transform this csvfile?