Python| Pandas TimedeltaIndex.set_names
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas TimedeltaIndex.set_names()
函数用于在给定的 TimedeltaIndex 对象上设置新名称。该函数默认返回新的索引对象。
Syntax : TimedeltaIndex.set_names(names, level=None, inplace=False)
Parameters :
names : name(s) to set
level : If the index is a MultiIndex (hierarchical), level(s) to set (None for all levels). Otherwise level must be None
inplace : if True, mutates in place
Return : new index (of same type and class…etc) [if inplace, returns None]
示例 #1:使用TimedeltaIndex.set_names()
函数设置给定 TimedeltaIndex 对象的名称。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(start ='11 days 22:14:12.001124', periods = 5, freq ='T')
# Print the TimedeltaIndex object
print(tidx)
输出 :
现在我们将使用TimedeltaIndex.set_names()
函数来设置给定 TimedeltaIndex 对象的名称。
# set the name of the object
tidx.set_names(names ='Sale_Point')
输出 :
正如我们在输出中看到的, TimedeltaIndex.set_names()
函数返回了一个新对象,并且还设置了返回对象的名称。示例 #2:使用TimedeltaIndex.set_names()
函数设置给定 TimedeltaIndex 对象的名称。
# importing pandas as pd
import pandas as pd
# Create the TimedeltaIndex object
tidx = pd.TimedeltaIndex(start ='03 days 09:22:56', periods = 5, freq ='H')
# Print the TimedeltaIndex object
print(tidx)
输出 :
现在我们将使用TimedeltaIndex.set_names()
函数来设置给定 TimedeltaIndex 对象的名称。
# set the name of the object
tidx.set_names(names ='Purchase_Time')
输出 :
正如我们在输出中看到的, TimedeltaIndex.set_names()
函数返回了一个新对象,并且还设置了返回对象的名称。