Pandas df.to_datetime格式化错误

时间:2017-09-01 22:11:19

标签: python pandas datetime

我在pandas中有一个数据框,其中有一个包含日期的列。我正在尝试将这些日期转换为与其他3个数据框的df.to_datetime索引匹配的时间戳,以便我可以concat它们。

数据框如下:

eth_price.head(n=5)

Out[33]: 
               0        1
0  8/28/17 16:19  344.021
1  8/28/17 16:19  344.021
2  8/28/17 16:24  343.833
3  8/28/17 16:29  343.643
4  8/28/17 16:34  343.632 

当我尝试使用eth_price[0] = pd.to_datetime(eth_price[0])修复此问题时 我收到以下错误:

  

ValueError:给定日期字符串不太可能是日期时间。

我该如何解决这个问题?其他日期/时间索引的格式如下:

btc_price.head(n=5)

Out[35]: 
                     0           1
0  2017-08-27 22:50:00  4,389.6113
1  2017-08-27 22:51:00  4,389.0850
2  2017-08-27 22:52:00  4,388.8625
3  2017-08-27 22:53:00  4,389.7888
4  2017-08-27 22:56:00  4,389.9138

0 个答案:

没有答案