Python|熊猫 DatetimeIndex.freq
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
如果在 DatetimeIndex 对象中设置了 Pandas DatetimeIndex.freq
属性,则返回频率对象。如果未设置频率,则返回 None。
Syntax: DatetimeIndex.freq
Return: frequency object
示例 #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 对象具有自定义的营业月开始频率。