📜  Python|熊猫时期.qyear

📅  最后修改于: 2022-05-13 01:55:27.813000             🧑  作者: Mango

Python|熊猫时期.qyear

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas Period.qyear属性根据其起始季度返回 Period 所在的财政年度。如果财政年和日历年相同,则期间的年份和 qyear 将相同。如果不是,则会计年度可能与该期间的日历年度不同。

示例 #1:使用Period.qyear属性为给定的 Period 对象查找期间所在的会计年度。

# importing pandas as pd
import pandas as pd
  
# Create the Period object
prd = pd.Period(freq ='S', year = 2000, month = 2,
                  day = 21, hour = 8, minute = 21)
  
# Print the Period object
print(prd)

输出 :

现在我们将使用Period.qyear属性来查找财政年度

# return the fiscal year
prd.qyear

输出 :

正如我们在输出中看到的, Period.qyear属性返回了 2000,表明给定的期间位于 2000 年。

示例 #2:使用Period.qyear属性查找给定 Period 对象的期间所在的会计年度。

# importing pandas as pd
import pandas as pd
  
# Create the Period object
prd = pd.Period(freq ='T', year = 2006, month = 10,
                            hour = 15, minute = 49)
  
# Print the Period object
print(prd)

输出 :

现在我们将使用Period.qyear属性来查找财政年度

# return the fiscal year
prd.qyear

输出 :

正如我们在输出中看到的, Period.qyear属性返回了 2006,表明给定的期间位于 2006 年。