当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Pandas TimedeltaIndex.identical用法及代码示例


Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。

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

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


用法: TimedeltaIndex.identical(other)

参数:
other:其他物件

返回:布尔值

范例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指示两个对象彼此不相同。



相关用法


注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas TimedeltaIndex.identical。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。