📜  Python| Pandas PeriodIndex.季度

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

Python| Pandas PeriodIndex.季度

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

Pandas PeriodIndex.quarter属性返回一个 Index 对象,其中包含给定 PeriodIndex 对象中每个期间的日期的季度。

示例 #1:使用PeriodIndex.quarter属性找出给定 PeriodIndex 对象中每个期间的日期的季度。

# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2003-4-21 08:45 ',
              end ='2003-12-21 8:55', freq ='Q')
  
# Print the PeriodIndex object
print(pidx)

输出 :

现在我们将使用PeriodIndex.quarter属性来找出 pidx 中每个周期的日期的季度。

# return the quarter of each date
pidx.quarter

输出 :

正如我们在输出中看到的, PeriodIndex.quarter属性返回了一个 Index 对象,其中包含给定 PeriodIndex 对象的季度值。示例 #2:使用PeriodIndex.quarter属性找出给定 PeriodIndex 对象中每个期间的日期的季度。

# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start ='2016-8-12 11:32', 
            end ='2017-04-05 11:55', freq ='M')
  
# Print the PeriodIndex object
print(pidx)

输出 :

现在我们将使用PeriodIndex.quarter属性来找出 pidx 中每个周期的日期的季度。

# return the quarter of each date
pidx.quarter

输出 :

正如我们在输出中看到的, PeriodIndex.quarter属性返回了一个 Index 对象,其中包含给定 PeriodIndex 对象的季度值。