pandas.Index.intersection #

最终 索引。交集( other , sort = False ) [来源] #

形成两个 Index 对象的交集。

这将返回一个新的 Index ,其中包含索引和other共有的元素。

参数
其他索引或类似数组
排序True、False 或 None,默认 False

是否对结果索引进行排序。

  • None :对结果进行排序,除非selfother相等或值无法比较。

  • False :不对结果进行排序。

  • True :对结果进行排序(这可能会引发 TypeError)。

返回
指数

例子

>>> idx1 = pd.Index([1, 2, 3, 4])
>>> idx2 = pd.Index([3, 4, 5, 6])
>>> idx1.intersection(idx2)
Index([3, 4], dtype='int64')