Python Pandas Index.contains()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.contains()函数返回一个布尔值,表明提供的键是否在索引中。如果输入值存在于索引中,则返回True,否则返回False,表明输入值不存在于索引中。
语法: Index.contains(key)
参数 :
key:对象
返回 : 布尔值
例子#1:使用Index.contains()函数来检查给定的日期是否存在于索引中。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['2015-10-31', '2015-12-02', '2016-01-03',
'2016-02-08', '2017-05-05'])
# Print the Index
idx
输出 :
让我们检查 “2016-02-08 “是否存在于索引中。
# Check if input date in present or not.
idx.contains('2016-02-08')
输出 :
正如我们在输出中看到的,该函数返回True,表明该值存在于索引中。
例子#2:使用Index.contains()函数检查输入的月份是否存在于索引中。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
# Print the Index
idx
输出 :
让我们检查 “五月 “是否存在于索引中。
# to check if the input month is
# part of the Index or not.
idx.contains('May')
输出 :