📜  Python|熊猫索引.isin()

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

Python|熊猫索引.isin()

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

Pandas Index.isin()函数返回一个布尔数组,其中索引值在值中。计算是否在传递的值集中找到每个索引值的布尔数组。返回的布尔数组的长度与索引的长度相匹配。

示例 #1:使用 Index.isin()函数检查索引值是否存在于传递的值列表中。

Python3
# importing pandas as pd
import pandas as pd
 
# Creating the Index
idx = pd.Index(['Labrador', 'Beagle', 'Mastiff',
                    'Lhasa', 'Husky', 'Beagle'])
 
# Print the Index
idx


Python3
# Passing a list containing two values against
#  which the index labels will be matched
idx.isin(['Lhasa', 'Mastiff'])


Python3
# importing pandas as pd
import pandas as pd
 
# Creating the MultiIndex
midx = pd.MultiIndex.from_arrays([['Mon', 'Tue', 'Wed', 'Thr'],
                 [10, 20, 30, 40]], names =('Days', 'Target'))
 
# Print the MultiIndex
midx


Python3
# test whether midx labels are in list or not
midx.isin(['Tue', 'Wed', 'Fri', 'Sat'], level ='Days')


输出 :

现在我们查找传递的列表中是否存在索引标签。

Python3

# Passing a list containing two values against
#  which the index labels will be matched
idx.isin(['Lhasa', 'Mastiff'])

输出 :

该函数返回一个与索引大小相同的数组对象。 True 值表示索引标签存在于传递的列表对象中,False 值表示索引标签不存在于传递的列表对象中。示例 #2:使用 Index.isin()函数检查 MultiIndex 的标签是否存在于传递的列表中。

Python3

# importing pandas as pd
import pandas as pd
 
# Creating the MultiIndex
midx = pd.MultiIndex.from_arrays([['Mon', 'Tue', 'Wed', 'Thr'],
                 [10, 20, 30, 40]], names =('Days', 'Target'))
 
# Print the MultiIndex
midx

输出 :

现在我们将检查 MultiIndex 中的标签是否存在于传递的列表中。

Python3

# test whether midx labels are in list or not
midx.isin(['Tue', 'Wed', 'Fri', 'Sat'], level ='Days')

输出 :

正如我们在输出中看到的,该函数返回了一个数组对象,其大小与 MultiIndex 所选级别的大小相同。 True 值表示索引标签存在于传递的列表对象中,False 值表示索引标签不存在于传递的列表对象中。