Python| Pandas TimedeltaIndex.names
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas TimedeltaIndex.names
属性返回一个冻结列表,其中包含 TimedeltaIndex 对象的名称(如果已设置)。如果没有为所考虑的对象设置名称,则返回 None。
Syntax : TimedeltaIndex.names
Return : frozenlist
示例 #1:使用TimedeltaIndex.names
属性找出 TimedeltaIndex 对象的名称。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(data =['1 days 02:00:00', '1 days 06:05:01.000030',
'1 days 02:00:00'], name ='MyObjejct')
# Print the TimedeltaIndex
print(tidx)
输出 :
现在我们将找出 tidx 对象的名称
# print the names of the TimedeltaIndex object.
tidx.names
输出 :
正如我们在输出中看到的, TimedeltaIndex.names
属性返回了对象的名称。示例 #2:使用TimedeltaIndex.names
属性找出 TimedeltaIndex 对象的名称。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(start ='1 days 02:00:00', periods = 5,
freq ='T', name ='Koala')
# Print the TimedeltaIndex
print(tidx)
输出 :
现在我们将找出 tidx 对象的名称
# print the name of the TimedeltaIndex object.
tidx.names
输出 :
正如我们在输出中看到的, TimedeltaIndex.names
属性返回了对象的名称。