Python Pandas Index.equals()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.equals()函数确定两个索引对象是否包含相同的元素。如果它们包含相同的元素,那么该函数返回True,否则该函数返回False,表明两个索引中包含的值是不同的。
语法: Index.equals(other)
参数 :
other:指数
返回 : 布尔值
例子#1:使用Index.equals()函数来检查两个索引是否包含相同的元素
# importing pandas as pd
import pandas as pd
# Creating the first Index
idx1 = pd.Index(['Labrador', 'Beagle', 'Labrador', 'Lhasa', 'Husky', 'Beagle'])
# Creating the second Index
idx2 = pd.Index(['Labrador', 'Beagle', 'Pug', 'Lhasa', 'Husky', 'Pitbull'])
# Print the first and second Index
print(idx1, "\n", idx2)
输出 :
让我们检查一下这两个指数是否相等。
# Checking the equality of the two Indexes
idx1.equals(idx2)
输出 :
正如我们在输出中看到的,Index.equals()函数返回了False,表明索引不相等。
例子#2:使用Index.equals()函数来检查两个索引的相等。
# importing pandas as pd
import pandas as pd
# Creating the first Index
idx1 = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
# Creating the second Index
idx2 = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
# Print the first and second Index
print(idx1, "\n", idx2)
输出 :
让我们检查一下这两个指数是否彼此相等。
# test the equality
idx1.equals(idx2)
输出 :
该函数返回 “True”,表明两个索引都是相互相等的。