web-dev-qa-db-ja.com

パンダ:タイムスタンプをdatetime.dateに変換します

タイムスタンプデータのpandas列があります

In [27]: train["Original_Quote_Date"][6] 
Out[27]: Timestamp('2013-12-25 00:00:00')

タイプのdatetime.dateオブジェクトに対するこれらのオブジェクトの等価性を確認する方法

datetime.date(2013, 12, 25)
34
kilojoules

.dateメソッドを使用します。

In [11]: t = pd.Timestamp('2013-12-25 00:00:00')

In [12]: t.date()
Out[12]: datetime.date(2013, 12, 25)

In [13]: t.date() == datetime.date(2013, 12, 25)
Out[13]: True

DatetimeIndex(つまり、タイムスタンプの配列)と比較するには、他の方法でそれを行う必要があります:

In [21]: pd.Timestamp(datetime.date(2013, 12, 25))
Out[21]: Timestamp('2013-12-25 00:00:00')

In [22]: ts = pd.DatetimeIndex([t])

In [23]: ts == pd.Timestamp(datetime.date(2013, 12, 25))
Out[23]: array([ True], dtype=bool)
39
Andy Hayden

pandas 0.20.3以降、 .to_pydatetime() を使用して、pandas.DateTimeIndexインスタンスをPython datetime.datetimeに変換します。

11
Xavier Ho

次のように、datetime.dateオブジェクトをpandas Timestampに変換できます。

#!/usr/bin/env python3
# coding: utf-8

import pandas as pd
import datetime

# create a datetime data object
d_time = datetime.date(2010, 11, 12)

# create a pandas Timestamp object
t_stamp = pd.to_datetime('2010/11/12')

# cast `datetime_timestamp` as Timestamp object and compare
d_time2t_stamp = pd.to_datetime(d_time)

# print to double check
print(d_time)
print(t_stamp)
print(d_time2t_stamp)

# since the conversion succeds this prints `True`
print(d_time2t_stamp == t_stamp)
4
albert