当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Pandas DatetimeIndex.freq用法及代码示例


Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。

Pandas DatetimeIndex.freq如果在DatetimeIndex对象中设置了频率对象,则该属性返回该频率对象。如果未设置频率,则返回无。

用法: DatetimeIndex.freq

返回:频率对象

范例1:采用DatetimeIndex.freq属性以查找给定DatetimeIndex对象的频率。

# importing pandas as pd 
import pandas as pd 
  
# Create the DatetimeIndex 
# Here 'BQ' represents Business quarter frequency 
didx = pd.DatetimeIndex(start ='2014-08-01 10:05:45', freq ='BQ',  
                               periods = 5, tz ='Asia/Calcutta') 
  
# Print the DatetimeIndex 
print(didx)

输出:

现在,我们要查找给定DatetimeIndex对象的频率值。

# find the value of frequency 
didx.freq

输出:

从输出中可以看到,该函数已为给定的DatetimeIndex对象返回了一个频率对象。

范例2:采用DatetimeIndex.freq属性以查找给定DatetimeIndex对象的频率。

# importing pandas as pd 
import pandas as pd 
  
# Create the DatetimeIndex 
# Here 'CBMS' represents custom business month start frequency 
didx = pd.DatetimeIndex(start ='2000-01-10 06:30', freq ='CBMS', 
                               periods = 5, tz ='Asia/Calcutta') 
  
# Print the DatetimeIndex 
print(didx)

输出:

现在,我们要查找给定DatetimeIndex对象的频率值。

# find the value of frequency 
didx.freq

输出:

从输出中可以看到,该函数已为给定的DatetimeIndex对象返回了一个频率对象。 didx DatetimeIndex对象具有自定义营业月开始频率。



相关用法


注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas DatetimeIndex.freq。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。