I have a CSV file like this:
2011 1 10 1000000
2011 1 11 998785
2011 1 12 1002940
2011 1 13 1004815
2011 1 14 1009415
2011 1 18 1011935
I want to read it into a DataFrame object and have a datetime typed index built from the frist 3 colomns. The final DataFrame should look like this:
values
datetime(2011,1,10) 1000000
datetime(2011,1,11) 998785
...
How should I do that? Thanks a lot!