熊猫时间序列用周末均值生成的一个值替换了周末

时间:2018-12-16 10:37:41

标签: python pandas time-series

我有一个多列熊猫数据框,每天都有行。 现在,我想用每个周末的平均值替换每个周末。

即(Fr,Sa,Su).resample()。mean()->(周末)

甚至不知道从哪里开始。

谢谢。

1 个答案:

答案 0 :(得分:1)

import pandas as pd
from datetime import timedelta
# make some data
df = pd.DataFrame({'dt': pd.date_range("2018-11-27", "2018-12-12"), "val": range(0,16)})

# adjust the weekend dates to fall on the friday
df['shifted'] = [d - timedelta(days = max(d.weekday() - 4, 0)) for d in df['dt']]

# calc the mean
df2 =  df.groupby(df['shifted']).val.mean()
df2

#Out[105]: 
#shifted
#2018-11-27     0
#2018-11-28     1
#2018-11-29     2
#2018-11-30     4
#2018-12-03     6
#2018-12-04     7
#2018-12-05     8
#2018-12-06     9
#2018-12-07    11
#2018-12-10    13
#2018-12-11    14
#2018-12-12    15