📜  Python| Pandas TimedeltaIndex.identical

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

Python| Pandas TimedeltaIndex.identical

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

Pandas TimedeltaIndex.identical()函数确定两个 Index 对象是否包含相同的元素。如果所考虑的两个对象包含相同的元素,则函数返回True否则函数返回False

注意:它类似于equals,但检查其他可比较的属性是否也相等。

示例 #1:使用TimedeltaIndex.identical()函数检查两个给定 TimedeltaIndex 对象中包含的元素是否相同。

# importing pandas as pd
import pandas as pd
  
# Create the first TimedeltaIndex object
tidx1 = pd.TimedeltaIndex(start ='1 days 06:05:01.000030', periods = 5,
                                              freq ='D', name ='Koala')
  
# Create the second TimedeltaIndex object
tidx2 = pd.TimedeltaIndex(start ='1 days 06:05:01.000030', periods = 5,
                                             freq ='D', name ='Koala')
  
# Print the first and second TimedeltaIndex object
print(tidx1, '\n', tidx2)

输出 :



现在我们将使用TimedeltaIndex.identical()函数来检查 tidx1 和 tidx2 中包含的值是否相同。

# find if the elements are identical in tidx1 and tidx2
tidx1.identical(tidx2)

输出 :

正如我们在输出中看到的那样, TimedeltaIndex.identical()函数返回True ,表明两个对象彼此相同。示例 #2:使用TimedeltaIndex.identical()函数检查两个给定 TimedeltaIndex 对象中包含的元素是否相同。

# importing pandas as pd
import pandas as pd
  
# Create the TimedeltaIndex object
tidx1 = pd.TimedeltaIndex(data =['1 days 02:00:00', '1 days 06:05:01.000030', 
                                 '1 days 02:00:00', '1 days 02:00:00',
                                           '21 days 06:15:01.000030'])
  
# Create the second TimedeltaIndex object
tidx2 = pd.TimedeltaIndex(data =['06:05:01.000030', '+23:59:59.999999', 
                          '22 day 2 min 3us 10ns', '+12:19:59.999999'])
  
# Print the first and second TimedeltaIndex object
print(tidx1, '\n', tidx2)

输出 :


现在我们将使用TimedeltaIndex.identical()函数来检查 tidx1 和 tidx2 中包含的值是否相同。

# find if the elements are identical in tidx1 and tidx2
tidx.identical(tidx2)

输出 :

正如我们在输出中看到的, TimedeltaIndex.identical()函数返回False ,表明两个对象彼此不相同。