Python3如何将日期转换为第一个月是9月的月度周期

时间:2019-05-01 04:02:01

标签: python-3.x pandas period

与一个从9月开始的会计年度的组一起工作。我有一个带有一堆日期的数据框,我想计算一个9月= 1的月度周期。

有效方法:

# Convert date column to datetime format
df['Hours_Date'] = pd.to_datetime(df['Hours_Date'])

# First quarter starts in September - Yes!   
df['Quarter'] = pd.PeriodIndex(df['Hours_Date'], freq='Q-Aug').strftime('Q%q')

什么不起作用:

# Gives me monthly periods starting in January.  Don't want.
df['Period'] = pd.PeriodIndex(df['Hours_Date'], freq='M').strftime('%m')

# Gives me an error
df['Period'] = pd.PeriodIndex(df['Hours_Date'], freq='M-Aug').strftime('%m')

是否可以调整每月频率?

2 个答案:

答案 0 :(得分:2)

我认为它尚未实现,请检查anchored offsets

可能的解决方案是减法或Index.shift 8偏移8个月:

rng = pd.date_range('2017-04-03', periods=10, freq='m')
df = pd.DataFrame({'Hours_Date': rng}) 

df['Period'] = (pd.PeriodIndex(df['Hours_Date'], freq='M') - 8).strftime('%m')

或者:

df['Period'] = pd.PeriodIndex(df['Hours_Date'], freq='M').shift(-8).strftime('%m')

print (df)
  Hours_Date Period
0 2017-04-30     08
1 2017-05-31     09
2 2017-06-30     10
3 2017-07-31     11
4 2017-08-31     12
5 2017-09-30     01
6 2017-10-31     02
7 2017-11-30     03
8 2017-12-31     04
9 2018-01-31     05

答案 1 :(得分:1)

我认为'M-Aug'不适用于月份,因此您可以使用np.where,来自Jez的数据进行一些调整

np.where(df['Hours_Date'].dt.month-8<=0,df['Hours_Date'].dt.month+4,df['Hours_Date'].dt.month-8)
Out[271]: array([ 8,  9, 10, 11, 12,  1,  2,  3,  4,  5], dtype=int64)