私はこれは私がシリーズ、それはintとして追加された最初の時間に日付を割り当てると、パンダの故障、(あまりにもv.18.1及び19)パンダのシリーズを持つことがあると思います(エラー)、それがdatetime(正しい)として追加された2回目、私は理由を理解できません。このコードで例えばPythonのパンダシリーズの故障日時
:
import datetime as dt
import pandas as pd
series = pd.Series(list('abc'))
date = dt.datetime(2016, 10, 30, 0, 0)
series["Date_column"] =date
print("The date is {} and the type is {}".format(series["Date_column"], type(series["Date_column"])))
series["Date_column"] =date
print("The date is {} and the type is {}".format(series["Date_column"], type(series["Date_column"])))
出力は次のようになります。
The date is 1477785600000000000 and the type is <class 'int'>
The date is 2016-10-30 00:00:00 and the type is <class 'datetime.datetime'>
あなたが見ることができるように、最初の時間は、それは常にint型の代わりにdatetime型として値を設定します。
助けてもらえますか? あらかじめありがとうございます。 Javi。
この現象の原因はわかりませんが、文字列に日付を追加するときは注意が必要です。列ではなく行を追加することに気づいていますか? – IanS
これは、私にはバグのようなにおいがする日時は、最初の割り当てにintに強要されているように見えるので、 '混合dtypesをサポートSeries'が、その後同じインデックスラベルの位置を上書きすることは予想される動作を生成します。私は[github](https://github.com/pandas-dev/pandas/issues)の問題を投稿したい – EdChum
ありがとうEdChum – bracana