python计算天数包含几周几天_python-计算几个范围内的天数

我有代表范围(从->到)的行.这是数据的子集.

df = DataFrame({'from': ['2015-08-24','2015-08-24'], 'to': ['2015-08-26','2015-08-31']})

from to

0 2015-08-24 2015-08-26

1 2015-08-24 2015-08-31

我想计算范围内每一天的工作日数.这是我的代码.

# Creating a business time index by taking min an max values from the ranges

b_range = pd.bdate_range(start=min(df['from']), end=max(df['to']))

# Init of a new DataFrame with this index and the count at 0

result = DataFrame(0, index=b_range, columns=['count'])

# Iterating over the range to select the index in the result and update the count column

for index, row in df.iterrows():

result.loc[pd.bdate_range(row['from'],row['to']),'count'] += 1

print(result)

count

2015-08-24 2

2015-08-25 2

2015-08-26 2

2015-08-27 1

2015-08-28 1

2015-08-31 1

它可以工作,但是没有人知道更Python化的方法吗(即没有for循环)?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值