python pandas:从财政年度和月份获得财政季度(英国)

时间:2016-06-04 16:53:51

标签: python date pandas fiscal

我的数据框有两个有用的列1)会计年度,2)日期。我想添加一个显示财政季度的新列。

仅供参考 - 英国财政年度为4月1日至3月31日

我的数据如下:

    fiscal year  date
    FY15/16      2015-11-01
    FY14/15      2014-10-01
    FY15/16      2016-02-01

我希望它看起来像这样:

    fiscal year  date        Quarter
    FY15/16      2015-11-01  q3
    FY14/15      2014-10-01  q3
    FY15/16      2016-02-01  q4

真的希望我能让这些季度合适!

以下代码有效,但我相信它会回归美国金融区,但我想要英国。

df['Quater'] = df['Date'].dt.quarter 

1 个答案:

答案 0 :(得分:9)

import pandas as pd
df = pd.DataFrame({'date': ['2015-11-01', '2014-10-01', '2016-02-01'],
                   'fiscal year': ['FY15/16', 'FY14/15', 'FY15/16']})
df['Quarter'] = pd.PeriodIndex(df['date'], freq='Q-MAR').strftime('Q%q')
print(df)

产量

         date fiscal year Quarter
0  2015-11-01     FY15/16      Q3
1  2014-10-01     FY14/15      Q3
2  2016-02-01     FY15/16      Q4

默认季度频率Q相当于Q-DEC

In [60]: pd.PeriodIndex(df['date'], freq='Q')
Out[60]: PeriodIndex(['2015Q4', '2014Q4', '2016Q1'], dtype='int64', freq='Q-DEC')

Q-DEC指定季度期间,其最后一个季度在12月的最后一天结束。 Q-MAR指定季度期间,其最后一个季度在3月的最后一天结束。

In [86]: pd.PeriodIndex(df['date'], freq='Q-MAR')
Out[86]: PeriodIndex(['2016Q3', '2015Q3', '2016Q4'], dtype='int64', freq='Q-MAR')