gpt4 book ai didi

python - Pandas 是一段时间内的时间戳

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:59 24 4
gpt4 key购买 nike

我有一个时间戳

tstamp = pd.to_datetime('01/11/2017')
tstamp
->> Timestamp('2017-01-11 00:00:00')

我有月经

per = pd.Period('01/03/2017', 'M')
per
->> Period('2017-01', 'M')

我想知道我的时间戳是否在我的期间内。例如2017年1月11日(my tstamp)在2017年1月(my per)期间

tstamp in per # doesn't work
pd.Series(tstamp).isin([per])
->> TypeError: object of type 'pandas._period.Period' has no len()

似乎无法弄清楚,我宁愿不做这样的事情:

tstamp < per.to_timestamp()+pd.Timedelta(1,'M') & tstamp > per.to_timestamp()

仅仅是因为它不能很好地处理我对数据所做的其余时间计算。

最佳答案

您可以使用 period.start_timeperiod.end_time 属性:

In [134]: per.start_time
Out[134]: Timestamp('2017-01-01 00:00:00')

In [135]: per.end_time
Out[135]: Timestamp('2017-01-31 23:59:59.999999999')

演示:

In [128]: tstamp = pd.to_datetime(['01/11/2017', '2017-06-01'])

In [129]: tstamp
Out[129]: DatetimeIndex(['2017-01-11', '2017-06-01'], dtype='datetime64[ns]', freq=None)

In [130]: (per.start_time <= tstamp) & (tstamp <= per.end_time)
Out[130]: array([ True, False], dtype=bool)

关于python - Pandas 是一段时间内的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42741469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com