Python Pandas DatetimeIndex.hour
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas DatetimeIndex.hour属性会输出一个Index对象,包含DatetimeIndex对象的每个条目中存在的小时值。
语法: DatetimeIndex.hour
返回:指数包含小时。
例子#1:使用DatetimeIndex.hour属性来查找DatetimeIndex对象中存在的小时值。
# importing pandas as pd
import pandas as pd
# Create the DatetimeIndex
# Here the 'BH' represents business hour frequency
didx = pd.DatetimeIndex(start ='2014-08-01 10:00', freq ='BH',
periods = 5, tz ='Asia/Calcutta')
# Print the DatetimeIndex
print(didx)
输出 :
现在我们要找到DatetimeIndex对象中的所有小时值。
# find all the hour values present in the object
didx.hour
输出 :
正如我们在输出中所看到的,该函数返回了一个Index对象,其中包含DatetimeIndex对象的每个条目中存在的小时值。
示例#2:使用DatetimeIndex.hour属性来查找DatetimeIndex对象中存在的小时值。
# importing pandas as pd
import pandas as pd
# Create the DatetimeIndex
# Here the 'H' represents hourly frequency
didx = pd.DatetimeIndex(start ='2000-01-10 06:30', freq ='H',
periods = 3, tz ='Asia/Calcutta')
# Print the DatetimeIndex
print(didx)
输出 :
现在我们要找到DatetimeIndex对象中的所有小时值。
# find all the hour values present in the object
didx.hour
输出 :
正如我们在输出中所看到的,该函数返回了一个Index对象,其中包含DatetimeIndex对象的每个条目中存在的小时值。