python获取前一天时间_Python从pandas date列获取一周的前一天(在我的示例中为星期四)...

当使用Pandas的`pd.offsets.Week`时,遇到跨年的情况,无法正确获取前一周的星期四日期。解决方法是使用`Series.where`结合`Series.dt.weekday`,只在非星期四的日期上应用偏移量。这样可以确保在任何日期都能返回正确的前一个星期四。
摘要由CSDN通过智能技术生成

I have a pandas date column and I want to return the date for the previous Thursday (could be any day of week). I use pd.offsets.Week but I do not get the expected result when the year changes and the Week starts over. Here is my dataframe as 'd':

raw date Thursday week_start

0 2019-01-03 2018-12-27 2018-12-27

1 2019-01-03 2018-12-27 2018-12-27

2 2019-01-03 2018-12-27 2018-12-27

3 2019-01-02 2018-12-27 2018-12-27

4 2019-01-02 2018-12-27 2018-12-27

5 2019-01-02 2018-12-27 2018-12-27

6 2019-01-03 2019-01-03 2018-12-27

7 2019-01-03 2019-01-03 2018-12-27

8 2019-01-03 2019-01-03 2018-12-27

9 2019-01-03 2019-01-03 2018-12-27

10 2019-01-02 2018-12-27 2018-12-27

11 2019-01-02 2018-12-27 2018-12-27

12 2019-01-02 2018-12-27 2018-12-27

d['week_start'] = d['raw date'] - pd.offsets.Week(weekday=3)

I expected where d['week_start'] = 1/3/2019 to return 1/3/2019, not 12/27/2018. I suspect it is because the Week at 1/3/2019 is 0 so it returns the Thursday of that week. How can I get the previous Thursday's date regardless of a change in the year?

解决方案

You can use Series.where with Series.dt.weekday for change only not Thursday values:

rng = pd.date_range('2019-01-03', periods=20)

d = pd.DataFrame({'raw date': rng})

mask = d['raw date'].dt.weekday == 3

d['week_start'] = d['raw date'].where(mask, d['raw date'] - pd.offsets.Week(weekday=3))

print(d)

raw date week_start

0 2019-01-03 2019-01-03

1 2019-01-04 2019-01-03

2 2019-01-05 2019-01-03

3 2019-01-06 2019-01-03

4 2019-01-07 2019-01-03

5 2019-01-08 2019-01-03

6 2019-01-09 2019-01-03

7 2019-01-10 2019-01-10

8 2019-01-11 2019-01-10

9 2019-01-12 2019-01-10

10 2019-01-13 2019-01-10

11 2019-01-14 2019-01-10

12 2019-01-15 2019-01-10

13 2019-01-16 2019-01-10

14 2019-01-17 2019-01-17

15 2019-01-18 2019-01-17

16 2019-01-19 2019-01-17

17 2019-01-20 2019-01-17

18 2019-01-21 2019-01-17

19 2019-01-22 2019-01-17

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值