4
我試圖通過簡單地傳遞日期和時間來刪除Python Dataframe中的一行。從Python/Pandas中的時間索引數據框中刪除行
數據幀結構如下:
Date_Time Price1 Price2 Price3
2012-01-01 00:00:00 63.05 41.40 68.14
2012-01-01 01:00:00 68.20 42.44 59.64
2012-01-01 02:00:00 61.68 43.18 49.81
我一直在試圖與df = df.drop('2012-01-01 01:00:00')
但我不斷收到以下錯誤信息:
exceptions.ValueError: labels [2012-01-01 01:00:00] not contained in axis
任何幫助在任刪除行或只是刪除值將非常感激。
:-)
這是也許有點令人驚訝,因爲ix與字符串一起工作......''df1.ix ['2012-01-01 01:00:00']'。 –
是的... ....需要把轉換在那裏...也許就此打開一個問題... – Jeff
@Jeff打開[問題在這裏](https://github.com/pydata/pandas/issues/3637) –