我的数据如下所示:
06.02.2013;13:00;0,215;0,215;0,185;0,205;0,00
我试着这样读:
s = pandas.read_csv(csv_file, sep=';', skiprows=3, index_col=[0],decimal=',',thousands='.',parse_dates={'Date': [0, 1]}, dayfirst=True)
(见http://www.nuclearphynance.com/Show%20Post.aspx?PostIDKey=164080 https://github.com/pydata/pandas/issues/2586)
这就是我得到的:
6022013.0 13:00 0.215 0.215 0.185 0.205 0
我究竟做错了什么?