gpt4 book ai didi

python Pandas : get fiscal quarter from fiscal year and month (for UK)

转载 作者:太空宇宙 更新时间:2023-11-03 12:38:03 27 4
gpt4 key购买 nike

我有一个包含两个有用列的数据框 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 

最佳答案

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 指定最后一个季度在三月的最后一天结束的季度。

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

关于 python Pandas : get fiscal quarter from fiscal year and month (for UK),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37632766/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com