📜  Python| Pandas TimedeltaIndex.append()

📅  最后修改于: 2022-05-13 01:55:23.325000             🧑  作者: Mango

Python| Pandas TimedeltaIndex.append()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas TimedeltaIndex.append()函数将一组索引选项附加在一起。通过将索引作为Python列表或元组传递,一次可以附加多个索引对象。

示例 #1:使用TimedeltaIndex.append()函数将 TimedeltaIndex 对象附加到给定对象的末尾。

# importing pandas as pd
import pandas as pd
  
# Create the first TimedeltaIndex object
tidx1 = pd.TimedeltaIndex(start ='1 days 02:00:12.001124', periods = 5,
                                              freq ='N', name ='Koala')
  
# Create the second TimedeltaIndex object
tidx2 = pd.TimedeltaIndex(data =['-1 days 2 min 3us 10ns',
                                 '1 days 06:05:01.000030', 
                                 '-1 days + 23:59:59.999999'])
  
# Print the first TimedeltaIndex object
print(tidx1)
  
# Print the second TimedeltaIndex object
print(tidx2)

输出 :

现在我们将在 tidx1 的末尾附加 tidx2。

# append tidx2 at the end of tidx1
tidx1.append(tidx2)

输出 :

正如我们在输出中看到的, TimedeltaIndex.append()函数在 tidx1 的末尾附加了 tidx2。示例 #2:使用TimedeltaIndex.append()函数将 TimedeltaIndex 对象列表附加到给定对象的末尾。

# importing pandas as pd
import pandas as pd
  
# Create the first TimedeltaIndex object
tidx1 = pd.TimedeltaIndex(start ='1 days 02:00:12.001124', periods = 5,
                                              freq ='N', name ='Koala')
  
# Create the second TimedeltaIndex object
tidx2 = pd.TimedeltaIndex(data =['-1 days 2 min 3us 10ns',
                                 '1 days 06:05:01.000030',
                                 '-1 days + 23:59:59.999999'])
  
# Create the third TimedeltaIndex object
tidx3 = pd.TimedeltaIndex(data =['-3 days 02:10:00',
                                 '1 days 06:05:01.000030',
                                 '1 days 02:00:00'], name ='MyObjejct')
  
# Print the first TimedeltaIndex object
print(tidx1)
  
# Print the second TimedeltaIndex object
print(tidx2)
  
# Print the third TimedeltaIndex object
print(tidx3)

输出 :


现在我们将在 tidx1 的末尾附加 tidx2 和 tidx3。

# append tidx2 and tidx3 at the end of tidx1
tidx1.append([tidx2, tidx3])

输出 :

正如我们在输出中看到的, TimedeltaIndex.append()函数在 tidx1 的末尾附加了 tidx2 和 tidx3。